-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "swapwatch",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "10.13.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node server.js",
"build": "next build",
"build:css": "node-sass -r stylesheets/main.scss -o static",
"heroku-postbuild": "next build",
"start": "NODE_ENV=production node server.js"
},
"keywords": [],
"author": "Nic Haynes <[email protected]> (http://nicinabox.com)",
"license": "ISC",
"dependencies": {
"axios": "^0.17.1",
"date-fns": "^1.29.0",
"express": "^4.16.4",
"lodash": "^4.17.2",
"next": "^4.2.1",
"next-redux-wrapper": "^1.3.5",
"normalize.css": "^7.0.0",
"parse-swap-title": "^0.1.0",
"path-to-regexp": "^2.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"node-sass": "^4.7.2"
}
}