-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 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
{
"type": "module",
"name": "pge-wall",
"version": "2.0.1",
"private": true,
"main": "server.mjs",
"dependencies": {
"babel-preset-env": "^1.7.0",
"bootstrap": "^5.1.3",
"cors": "^2.8.5",
"dateformat": "^5.0.2",
"dotenv": "^10.0.0",
"es6-promise": "^4.2.8",
"esm": "^3.2.25",
"express": "^4.17.1",
"immutable": "^4.0.0",
"isomorphic-fetch": "^3.0.0",
"jquery": "^3.6.0",
"moment": "^2.29.4",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-bootstrap": "^2.0.1",
"react-dom": "^17.0.2",
"react-file-reader": "^1.1.4",
"react-ga": "^3.3.0",
"react-scripts": "^5.0.1"
},
"scripts": {
"start": "node --experimental-specifier-resolution=node server.mjs",
"stop": "(kill -9 $(lsof -ti :3001) 2> /dev/null); (kill -9 $(lsof -ti :3000) 2> /dev/null); echo 'Stopped'",
"local": "npm run build && (node --experimental-specifier-resolution=node server.mjs & open http://localhost:3001)",
"restart": "(kill -9 $(lsof -ti :3001) 2> /dev/null); node --experimental-specifier-resolution=node server.mjs &",
"dev": "node --experimental-specifier-resolution=node server.mjs dev & react-scripts start &",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"react": "react-scripts start"
},
"eslintConfig": {
"extends": "react-app"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"babel-eslint": "^10.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react-hooks": "^4.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}