-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 KB
/
package.json
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
{
"name": "mono-repo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "14.16.0"
},
"scripts": {
"postinstall": "lerna bootstrap; lerna run --parallel build",
"ts-noEmit": "npx tsc --noEmit",
"package:demo": "lerna run --scope demo --stream dev",
"serve:demo": "lerna run --scope demo --stream start",
"start": "run-p --print-label package:*",
"build": "lerna run --parallel build",
"serve": "run-p serve:*",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"test": "npm run lint && npm run ts-noEmit && jest",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.11",
"@types/next": "^9.0.0",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@types/yup": "^0.29.11",
"@zeit/next-typescript": "^1.1.1",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"express": "^4.17.1",
"fork-ts-checker-webpack-plugin": "^6.2.1",
"formik": "^2.2.6",
"helmet": "^5.0.2",
"lodash.get": "^4.4.2",
"moment-timezone": "^0.5.33",
"next": "^10.0.6",
"next-compose-plugins": "^2.2.1",
"next-connect": "^0.9.0",
"next-transpile-modules": "^6.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sass": "^1.32.7",
"ts-node": "^10.9.1",
"typescript": "^4.2.4",
"winston": "^3.3.3",
"yup": "^0.32.9"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/lodash.get": "^4.4.6",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-plugin-jest": "^24.3.4",
"husky": "^5.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jsdom": "^16.4.0",
"lerna": "^3.22.1",
"npm-run-all": "^4.1.5",
"ts-jest": "^26.5.2"
}
}