-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"name": "tic-tac-toe-code-test",
"version": "1.0.0",
"description": "Tic Tac Toe code test",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/EnzoMartin/tic-tac-toe-code-test.git"
},
"license": "MIT",
"author": "Enzo Martin <[email protected]>",
"contributors": [
"Enzo Martin <[email protected]>"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"main": "./service/start.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "nyc mocha --full-trace --exit --recursive",
"test:watch": "nyc mocha --full-trace --recursive -w",
"build": "next build ./client",
"dev": "nodemon --watch ./service $npm_package_main | bunyan -o short --color"
},
"dependencies": {
"async": "^2.6.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"bunyan": "^1.8.12",
"compression": "^1.7.1",
"connect-redis": "^3.3.3",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"express-session": "^1.15.6",
"ioredis": "^3.2.2",
"next": "^4.2.3",
"primus": "^7.1.1",
"primus-rooms": "^3.4.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"uuid": "^3.1.0",
"ws": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"dotenv": "^4.0.0",
"enzo-codestyle": "^5.1.0",
"eslint": "^4.15.0",
"eslint-plugin-react": "^7.5.1",
"expect": "^22.1.0",
"mocha": "^4.1.0",
"nodemon": "^1.14.11",
"nyc": "^11.4.1",
"proxyquire": "^1.8.0",
"sinon": "^4.1.5"
}
}