-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 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
64
65
66
67
68
69
{
"name": "public-api-integration-js-example",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"axios": "^0.21.0",
"classnames": "^2.2.6",
"cors": "2.8.4",
"customize-cra": "^1.0.0",
"dotenv": "^8.2.0",
"express": "4.16.3",
"qhistory": "^1.1.0",
"react": "^17.0.1",
"react-app-rewired": "^2.1.6",
"react-dom": "^17.0.1",
"react-grid-system": "^7.1.1",
"react-loading": "^2.0.3",
"react-router-dom": "^5.2.0",
"react-scripts": "3",
"typescript": "^4.0.3",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "yarn compile:css && yarn start:app",
"start:app": "npm-run-all --parallel watch:server start:web",
"start:web": "HTTPS=true react-app-rewired start",
"start:server": "ts-node -P tsconfig.server.json server",
"watch:server": "nodemon --exec 'ts-node -P tsconfig.server.json' --watch server server",
"compile:css": "postcss src/css/tailwind.css -o src/css/main.css",
"build": "react-app-rewired build",
"eject": "react-scripts eject"
},
"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"
]
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/classnames": "^2.2.11",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/react-router-dom": "^5.1.6",
"autoprefixer": "^10.0.1",
"express-print-routes": "^1.0.0",
"nodemon": "1.18.4",
"npm-run-all": "4.1.3",
"postcss": "^8.1.4",
"postcss-cli": "^8.1.0",
"tailwindcss": "^1.9.6",
"ts-node": "^9.0.0"
}
}