-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
95 lines (95 loc) · 3.11 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
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
{
"name": "spherical-world",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/node": "^14.14.10",
"classnames": "^2.2.6",
"gl-matrix": "^3.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-scripts": "^4.0.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"reselect": "^4.0.0",
"uuid": "^8.3.1"
},
"scripts": {
"start": "EXTEND_ESLINT=true TSC_COMPILE_ON_ERROR=true react-app-rewired start",
"start-server": "sudo docker-compose up",
"rebuild-server": "sudo docker-compose up -d --force-recreate --build",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-app-rewired eject",
"flow": "./node_modules/flow-bin/cli.js",
"lint": "./node_modules/eslint/bin/eslint.js --ignore-pattern=node_modules --ignore-pattern=bundle.js --ext .jsx,.js src server common addons",
"fix-nvm-sudo": "n=$(which node);n=${n%/bin/node}; chmod -R 755 $n/bin/*; sudo cp -r $n/{bin,lib,share} /usr/local",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"proxy": "http://localhost:1337",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-syntax-jsx": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@storybook/addon-actions": "^6.1.8",
"@storybook/addon-backgrounds": "^6.1.8",
"@storybook/addon-essentials": "^6.1.8",
"@storybook/addon-links": "^6.1.8",
"@storybook/addons": "^6.1.8",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/react": "^6.1.8",
"@teamsupercell/typings-for-css-modules-loader": "^2.4.0",
"@types/classnames": "^2.2.11",
"@types/fs-extra": "^9.0.4",
"@types/jest": "^26.0.15",
"@types/mongodb": "^3.5.34",
"@types/pako": "^1.0.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.11",
"@types/seedrandom": "^2.4.28",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-loader": "^8.1.0",
"customize-cra": "^1.0.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"raw-loader": "^4.0.1",
"react-app-rewired": "^2.1.6",
"stylelint": "^13.6.1",
"stylelint-config-sass-guidelines": "^7.0.0",
"typescript": "^4.1.2",
"worker-loader": "^2.0.0"
},
"browserslist": [
"> 3%",
"not ie <= 11"
],
"eslintConfig": {
"rules": {},
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {}
}
]
}
}