-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 loc) · 1.41 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": "axiom-web",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node backend/entrypoint",
"build": "parcel build frontend/index.html --public-url \"${PUBLIC_URL:-/}\" --detailed-report",
"build-mock": "MOCK=1 parcel build frontend/index.html --public-url \"${PUBLIC_URL:-/}\" --detailed-report",
"watch": "NODE_ENV=development parcel watch frontend/index.html &\n yarn start",
"frontend": "NODE_ENV=development MOCK=1 parcel watch frontend/index.html",
"format": "prettier --write '{frontend,backend}/**/*.{js,jsx}'"
},
"browserslist": [
"last 10 Firefox versions"
],
"dependencies": {
"buffer": "^6.0.3",
"express": "~4.17.3",
"socket.io": "^4.4.1"
},
"devDependencies": {
"@material-ui/core": "^4.8.0",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.60",
"@parcel/resolver-glob": "^2.4.0",
"@reduxjs/toolkit": "^1.1.0",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-router-dom": "^5.1.3",
"js-yaml": "^3.13.1",
"markdown-to-jsx": "^6.11.4",
"morgan": "~1.9.1",
"parcel": "^2.4.0",
"prettier": "^1.19.1",
"process": "^0.11.10",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"socket.io-client": "^4.4.1",
"typescript": "^3.7.4",
"yarn": "^1.22.18"
}
}