-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 922 Bytes
/
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
{
"name": "connect4",
"version": "1.0.0",
"description": "",
"private": true,
"dependencies": {
"@tensorflow/tfjs": "^1.4.0",
"phaser": "^3.17.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.0.1",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.4"
},
"scripts": {
"lint": "eslint --fix --ext .ts src",
"test": "jest",
"debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"testEnvironment": "node"
},
"author": "Emanuele Sabellico",
"license": "ISC"
}