forked from amazon-archives/aws-appsync-chat-starter-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.98 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
{
"name": "chatql-react-app-reinvent",
"version": "0.1.0",
"private": true,
"dependencies": {
"aws-amplify": "1.1.9",
"aws-amplify-react": "2.0.5",
"aws-appsync": "1.3.4",
"aws-appsync-react": "1.1.4",
"bootstrap": "^4.1.3",
"downshift": "^2.2.3",
"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",
"react": "^16.5.2",
"react-apollo": "2.2.4",
"react-click-n-hold": "^1.0.6",
"react-custom-scrollbars": "^4.2.1",
"react-d3-cloud": "^0.6.0",
"react-dom": "^16.5.2",
"react-scripts": "2.1.1",
"react-sizeme": "^2.5.2",
"react-sound": "^1.2.0",
"react-speech-recognition": "^1.0.7",
"react-spinners": "^0.4.5",
"react-tiny-popover": "^3.4.2",
"reactstrap": "^6.4.0",
"rxjs": "^6.3.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "9",
"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",
"npm-run-all": "^4.1.5",
"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"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}