-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"name": "nextjs-oip-hdmw",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "./node_modules/.bin/nodemon server/server.js --watch server --exec babel-node",
"build": "yarn build:next && yarn build:server",
"build:next": "next build",
"build:server": "./node_modules/.bin/babel server -d compiled/server",
"start": "NODE_ENV=production node compiled/server/server.js",
"heroku-postbuild": "yarn build:next",
"deploy": "git push heroku master"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"@oipwg/hdmw": "^2.0.0-beta.7",
"bip39": "^3.0.2",
"clipboard": "^2.0.6",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.3",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"next": "^9.3.0",
"next-images": "^1.3.1",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-jss": "^10.0.4",
"react-redux": "^7.2.0",
"react-spinners": "^0.8.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/runtime": "^7.8.7",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"redux-logger": "^3.0.6"
},
"heroku-run-build-script": true,
"engines": {
"node": ">=10.14.2",
"yarn": ">=1.12.3"
},
"jest": {
"testEnvironment": "node"
}
}