-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.82 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "poker-estimation",
"version": "1.0.2",
"scripts": {
"start-dev": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve\"",
"start": "node ./dist",
"build": "npm run build-ts && npm run tslint",
"build-ts": "tsc",
"test": "jest --forceExit",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"watch-ts": "tsc -w",
"serve": "nodemon ./dist"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json",
"skipBabel": true
}
},
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.ts",
"**/test/**/*Test.ts"
],
"testEnvironment": "node"
},
"main": "./dist/index.js",
"author": {
"name": "Nhat Phan",
"email": "nhatphan@ntworld.net"
},
"license": "MIT",
"engines": {
"node": ">=8.7"
},
"dependencies": {
"@types/socket.io": "^1.4.38",
"body-parser": "^1.18.2",
"config": "^1.29.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"csurf": "^1.9.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"socket.io": "^2.1.1"
},
"devDependencies": {
"@types/config": "^0.0.33",
"@types/express": "^4.11.0",
"@types/express-handlebars": "^0.0.30",
"@types/handlebars": "^4.0.36",
"@types/jest": "^21.1.8",
"@types/lodash": "^4.14.91",
"@types/sinon": "^4.1.2",
"concurrently": "^3.5.1",
"coveralls": "^3.0.0",
"jest": "^21.2.1",
"nodemon": "^1.14.11",
"supertest": "^3.1.0",
"ts-jest": "^21.2.3",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
}
}