-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.82 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.82 KB
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
{
"name": "dat-react-shopping-list",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/runtime": "^7.5.5",
"@jimpick/hyperdrive-hyperdb-backend": "^9.12.3-10",
"clipboard-copy": "^3.1.0",
"customize-cra": "^0.7.0",
"dat-colors": "^3.5.1",
"deep-equal": "^1.0.1",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"hypercore-crypto": "^1.0.0",
"hyperdiscovery": "^10.0.1",
"monotonic-timestamp-base36": "^1.0.0",
"nanohtml": "^1.8.1",
"nodemon": "^1.19.1",
"pretty-hash": "^1.0.1",
"pump": "^3.0.0",
"random-access-idb": "^1.2.1",
"random-access-memory": "^3.1.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-focus-lock": "^2.0.5",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.1.1",
"rechyons": "^0.8.5",
"redux": "^4.0.4",
"redux-saga": "^1.0.5",
"styled-components": "^4.3.2",
"thunky": "^1.0.3",
"to-buffer": "^1.1.1",
"websocket-stream": "^5.5.0"
},
"devDependencies": {
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-plugin-inline-react-svg": "^1.1.0",
"react-app-rewired": "^2.1.3"
},
"scripts": {
"start": "nodemon --exec babel-node devServer.js & react-app-rewired start",
"build": "react-app-rewired build",
"deploy": "react-app-rewired build && forever -c babel-node start server.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}