-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
{
"name": "diy-dog-search",
"version": "0.1.0",
"private": true,
"now": {
"files": [
"build",
"npm-shrinkwrap.json",
"index.js"
],
"engines": {
"node": "6.9.4"
},
"env": {
"NODE_ENV": "production",
"NO_LOGGING": true
}
},
"devDependencies": {
"axios": "^0.15.3",
"babel-eslint": "^7.0.0",
"detect-passive-events": "^1.0.0",
"eslint": "^3.8.1",
"eslint-config-react-app": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-0.5.0.tgz",
"eslint-plugin-flowtype": "^2.21.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"glob": "^7.1.1",
"localforage": "^1.4.3",
"lodash": "^4.17.4",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-masonry-component": "^5.0.3",
"react-redux": "^5.0.2",
"react-scripts": "0.8.5",
"react-share": "^1.11.0",
"redux": "^3.6.0",
"replace-in-file": "^2.2.2",
"rimraf": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.4.tgz",
"styled-components": "^1.2.1",
"react-router": "^4.0.0-beta.3",
"react-router-dom": "^4.0.0-beta.3"
},
"dependencies": {
"compression": "^1.6.2",
"express": "^4.14.0",
"morgan": "^1.7.0",
"sw-toolbox": "^3.4.0"
},
"scripts": {
"watch": "react-scripts start",
"remove-map": "node ./remove-map.js",
"now-build": "echo \"no build for now (pun intended)\n\" && exit",
"build": "react-scripts build && npm run remove-map && npm run build-precache",
"build-precache": "node ./build-precache.js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start": "node ./index.js",
"publish": "npm run build && now"
}
}