-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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
{
"name": "pool",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node .",
"start:dev": "nodemon -r dotenv/config .",
"build": "parcel build src/client/index.html",
"build:dev": "cross-env NODE_ENV=development parcel build src/client/index.html --no-minify",
"db:purge": "node -r dotenv/config scripts/purgeDb"
},
"author": "James Ransome",
"license": "ISC",
"nodemonConfig": {
"ignore": [
"dist/*"
],
"events": {
"start": "npm run build:dev",
"restart": "npm run build:dev"
}
},
"dependencies": {
"dompurify": "^2.0.12",
"express": "^4.17.1",
"firebase-admin": "^8.11.0",
"matter-js": "^0.14.2",
"p5": "^1.0.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"nodemon": "^2.0.3",
"parcel": "^1.12.4"
}
}