-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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": "custom-codenames",
"version": "1.0.0",
"description": "Play Codenames online",
"main": "server.js",
"repository": "[email protected]:sgoedecke/custom-codenames.git",
"author": "Sean Goedecke <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"@zendeskgarden/react-buttons": "^8.4.1",
"@zendeskgarden/react-grid": "^8.4.1",
"@zendeskgarden/react-theming": "^8.4.1",
"@zendeskgarden/react-typography": "^8.4.1",
"atob": "^2.1.2",
"express": "4.15.2",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"random-words": "^1.1.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"shuffle-array": "^1.0.1",
"socket.io": "^2.3.0",
"styled-components": "^5.0.1",
"uuid": "^7.0.2"
},
"scripts": {
"start": "node index.js",
"build": "webpack",
"lint": "eslint --fix index.js client/*.js server/*.js"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}