-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.83 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
{
"private": true,
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-transform-typescript": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@emotion/babel-plugin": "^11.7.2",
"@emotion/jest": "^11.9.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"babel-jest": "^27.5.1",
"eslint": "^8.12.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"gatsby": "^4.11.2",
"gzip-size": "^7.0.0",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"pretty-bytes": "^6.0.0",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^2.70.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-uglify": "^6.0.4"
},
"workspaces": {
"packages": [
"workspaces/*"
]
},
"scripts": {
"test": "yarn lint && yarn jest",
"test:watch": "yarn jest --watch",
"lint": "eslint 'workspaces/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint 'workspaces/**/*.{js,jsx,ts,tsx}' --fix",
"build": "yarn lerna run build --scope '@react-frontend-developer/**'",
"deploy": "yarn lerna run build --ignore homepage && yarn lerna run build --scope homepage"
},
"packageManager": "[email protected]"
}