-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "game-of-life-backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "NODE_ENV='test' mocha -r ts-node/register \"./src/**/*.spec.ts\""
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.4",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@types/ramda": "^0.27.3",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.2",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"socket.io-client": "^2.3.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"ramda": "^0.27.0",
"socket.io": "^2.3.0"
}
}