-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "my-razzle-app",
"version": "4.0.5",
"license": "MIT",
"scripts": {
"build:prod": "PORT=8080 razzle build --noninteractive",
"build:dev": "PORT=3113 razzle build --noninteractive",
"build-upload": "PORT=8080 razzle build --noninteractive && tar -zcvf build.tar.gz build && scp build.tar.gz do2:~/www/gmx-stats",
"test": "razzle test --env=jsdom",
"start": "PORT=3113 razzle start",
"start-win": "set PORT=3113&razzle start",
"start:prod": "node build/server.js",
"lint": "eslint $(git ls-files -m | grep -E \".js$\")",
"pre-commit": "npm run lint"
},
"dependencies": {
"@apollo/client": "3.4.17",
"babel-preset-razzle": "^4.0.5",
"chalk": "^4.1.2",
"classnames": "^2.3.1",
"console-log-level": "^1.4.1",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"date-fns": "^2.28.0",
"eslint": "^8.8.0",
"eslint-plugin-react": "^7.28.0",
"ethers": "^5.5.4",
"express": "^4.17.2",
"framer-motion": "^4.1.17",
"graphql": "^15.8.0",
"html-webpack-plugin": "^4.5.2",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^0.9.0",
"moment": "^2.29.1",
"object-sizeof": "^1.6.1",
"prop-types": "^15.8.1",
"razzle": "^4.2.14",
"razzle-dev-utils": "^4.2.14",
"react": "^17.0.2",
"react-date-range": "^1.4.0",
"react-dom": "^17.0.2",
"react-dropdown-select": "^4.8.3",
"react-icons": "^4.3.1",
"react-router-dom": "^5.3.0",
"recharts": "^2.1.9",
"strftime": "^0.10.1",
"webpack": "^4.46.0",
"webpack-dev-server": "^3.11.3"
},
"engines": {
"node": "14.x",
"npm": "6.x"
}
}