-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.3 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
75
76
77
78
79
80
81
82
{
"name": "the-black-cat-server",
"version": "1.1.2",
"description": "The server part of online multiplayer card game The Black Cat",
"main": "./build/index.js",
"scripts": {
"build": "webpack",
"build-distribution": "webpack --env.NODE_ENV=production",
"distribution": "gulp dist",
"start": "npm run build && node ./build/index.js",
"launch": "node ./build/index.js",
"test": "npm run lint && jest --coverage",
"test:barebone": "jest",
"report-coverage": "npm t && codecov",
"lint": "tslint ./src/**/*.ts ./tests/**/*.ts",
"doc": "typedoc --options typedoc.json"
},
"author": {
"name": "Erik Cupal",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ErikCupal/the-black-cat-server"
},
"license": "MIT",
"dependencies": {
"express": "^4.15.2",
"lodash": "^4.17.4",
"redux": "^3.6.0",
"remote-redux-devtools": "^0.5.7",
"returnof": "^1.1.1",
"rxjs": "^5.1.1",
"socket.io": "^1.7.3"
},
"devDependencies": {
"@types/express": "^4.0.35",
"@types/jest": "^19.2.2",
"@types/lodash": "^4.14.61",
"@types/remote-redux-devtools": "^0.3.5",
"@types/socket.io": "^1.4.29",
"archiver": "^1.3.0",
"babel-core": "^6.24.0",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"codecov": "^2.1.0",
"ghooks": "^2.0.0",
"gulp": "^3.9.1",
"jest": "^19.0.2",
"rimraf": "^2.6.1",
"ts-jest": "^19.0.6",
"ts-loader": "^2.0.3",
"tslint": "^5.0.0",
"typedoc": "^0.5.9",
"typescript": "^2.3.0-dev.20170327",
"webpack": "^2.3.2",
"webpack-node-externals": "^1.5.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
".(ts|tsx)$": "<rootDir>/jest.preprocessor.js"
},
"testRegex": "(/tests/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"constants"
]
},
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm run test:barebone"
}
}
}