forked from MoeCancode/hungry-sharks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.06 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": "hungry-sharks",
"version": "0.1.0",
"engines": {
"node": "16.14.2"
},
"private": true,
"scripts": {
"develop": "cd client && npm start",
"start_old": "concurrently \"cd client && npm start\" \"cd server && npm run watch\"",
"start": "export ENVIRONMENT=prod && cd server && node server.js",
"install": "cd client && npm i && cd ../server && npm i",
"build": "cd client && npm run build",
"server": "node server/server.js",
"heroku-postbuild": "cd client && npm run build && cd .."
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"tailwindcss": "^3.0.24"
},
"dependencies": {
"concurrently": "^7.2.1",
"daisyui": "^2.15.2",
"query-string": "^7.1.1"
}
}