-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.22 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "frontend-application",
"version": "0.0.1",
"description": "The repository housing all trading application",
"main": "index.js",
"repository": "git@github.com:gbozee/the-trader-guide.git",
"author": "Beesama <b33sama@gmail.com>",
"license": "None",
"private": true,
"workspaces": [
"packages/*",
"services/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"changeset": "changeset",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|jsx|ts|tsx|json|css)\"",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"lint": "lerna run lint",
"components": "yarn workspace @tuteria/components",
"web": "yarn workspace @tuteria/www",
"build": "lerna build",
"validate": "npm-run-all --parallel check-format lint build",
"storybook": "start-storybook -p 9010 -s public --ci",
"build-storybook": "build-storybook -s public",
"clean": "lerna clean --yes && rm -rf node_modules",
"test": "lerna run test",
"service:common": "yarn workspace @tuteria/common",
"service:example": "yarn workspace @tuteria/example-service",
"db:generate-all": "yarn service:example db:generate"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@prisma/cli": "^2.2.2",
"@storybook/addon-actions": "6.0.0-beta.38",
"@storybook/addon-links": "6.0.0-beta.38",
"@storybook/addons": "6.0.0-beta.38",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "6.0.0-beta.38",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^8.0.3",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/jest": "^24.0.25",
"@types/katex": "^0.11.0",
"@types/morgan": "^1.9.1",
"@types/node": "^12.12.24",
"@types/pluralize": "^0.0.29",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/supertest": "^2.0.10",
"@types/testing-library__dom": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"babel-eslint": "10.1.0",
"babel-loader": "^8.1.0",
"eslint-plugin-jest-dom": "^3.0.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.5",
"eslint-plugin-testing-library": "^3.3.1",
"hard-rejection": "^2.1.0",
"husky": "^4.2.5",
"lerna": "^3.20.2",
"lint-staged": "^10.2.11",
"next-transpile-modules": "^4.0.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-node": "8.10.2",
"uvu": "0.3.0"
},
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@changesets/cli": "^2.9.2",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@prisma/client": "^2.2.2",
"body-parser": "^1.19.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"emotion-theming": "^10.0.27",
"express": "^4.17.1",
"json-groupby": "^1.1.0",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"pluralize": "^8.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"typescript": "3.9.6",
"winston": "^3.3.3"
}
}