-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.69 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
{
"name": "chatql-react-app-reinvent",
"version": "0.1.0",
"private": true,
"dependencies": {
"aws-amplify": "^1.0.8",
"aws-amplify-react": "^2.0.0",
"aws-appsync": "^1.3.4",
"aws-appsync-react": "^1.1.4",
"bootstrap": "^4.1.3",
"downshift": "^2.2.2",
"graphql-tag": "^2.9.2",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"lodash.get": "^4.4.2",
"moment": "^2.22.2",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"react": "^16.4.2",
"react-apollo": "^2.1.11",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.4.2",
"react-scripts": "1.1.5",
"react-spinners": "^0.4.5",
"reactstrap": "^6.4.0",
"rxjs": "^6.3.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "8",
"babel-runtime": "^6.26.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"prettier-eslint": "^8.8.2",
"standard": "^11.0.1"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"build-js": "react-scripts build",
"start": "npm-run-all -p watch-css start-js",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}