-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "coinviz",
"version": "0.1.0",
"private": true,
"main": "server.js",
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"nodemon": "^2.0.4",
"react-scripts": "3.4.1"
},
"scripts": {
"start": "node server.js",
"build": "react-scripts build",
"deploy": "gh-pages -d build",
"client": "npm start --prefix client",
"dev": "concurrently \"nodemon server.js\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"bracketSpacing": true,
"tabs": true,
"tabWidth": 4,
"semicolons": true,
"arrowParens": "avoid",
"trailingComma": "es5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}