-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
46
{
"name": "garage-pi-js-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"start:api": "ts-node -P api/tsconfig.json api/server.ts",
"start:app": "react-scripts start",
"start:dev": "NODE_ENV=development concurrently 'npm run start:api' 'npm run start:app'",
"start": "npm run build & npm run start:api",
"build": "NODE_ENV=production react-scripts build"
},
"dependencies": {
"@types/express": "^4.16.1",
"@types/jest": "24.0.15",
"@types/node": "12.0.12",
"@types/pigpio": "^1.2.1",
"@types/react": "16.8.23",
"@types/react-bootstrap": "^0.32.19",
"@types/react-dom": "16.8.4",
"bootstrap": "^4.3.1",
"concurrently": "^4.1.1",
"express": "^4.17.0",
"pigpio": "^1.2.2",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.9",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"ts-node": "^8.1.0",
"typescript": "3.5.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}