-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.29 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "rpsls-REST",
"version": "1.0.0",
"description": "Implementation of rock paper scissors lizard spock using RESTful express server",
"main": "index.js",
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"scripts": {
"test": "jest --detectOpenHandles --runInBand --forceExit",
"react-dev": "webpack --watch",
"install:db": "cd db/ && npm install",
"seed:db": "cd db/ && npm run seed",
"install:static": "cd www/static-server && npm install",
"start:static": "cd www/static-server && npm run server-dev",
"install:api": "cd www/api && npm install",
"start:api": "cd www/api && npm run server-dev",
"install:socket": "cd www/socket-server npm install",
"start:socket": "cd www/socket-server && npm run socket-dev",
"install:all": "npm install && npm run install:db && npm run install:static && npm run install:api && npm run install:socket",
"start:all": "npm run start:static | npm run start:socket",
"static:pm2": "cd www/static-server && npm run server-pm2",
"socket:pm2": "cd www/socket-server && npm run socket-pm2",
"all:pm2": "npm run static:pm2 | npm run socket:pm2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coffeegoddd/rpsls-REST.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/coffeegoddd/rpsls-REST/issues"
},
"homepage": "https://github.com/coffeegoddd/rpsls-REST#readme",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"express": "^4.16.4",
"jest": "^24.1.0",
"mongodb": "^3.1.13",
"pm2": "^3.4.1",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"supertest": "^3.4.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.29.4",
"webpack-cli": "^3.2.3"
}
}