forked from soloschenko-grigoriy/gamedev-patterns-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "tic-tac-toe-ts",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"start": "webpack-dev-server --config webpack.config.js",
"test": "jest",
"lint": "eslint src/**"
},
"engines": {
"node": "16.16.0",
"npm": "8.11.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.0.0",
"babel-jest": "^28.1.2",
"babel-loader": "^8.2.5",
"babel-preset-env": "^1.7.0",
"canvas": "^2.9.3",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.19.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"pre-commit": "^1.2.2",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"typescript": "^4.3.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"pre-commit": [
"lint",
"test"
]
}