-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 870 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
{
"name": "game-of-life",
"version": "0.0.1",
"engines": {
"node": ">= 16.13 <17"
},
"devDependencies": {
"@types/jest": "~27.0.2",
"@types/node": "~16.11.6",
"@typescript-eslint/eslint-plugin": "~5.7.0",
"@typescript-eslint/parser": "~5.7.0",
"eslint": "~8.4.1",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~25.3.0",
"html-webpack-plugin": "^5.5.0",
"jest": "~27.4.4",
"prettier": "~2.5.1",
"ts-jest": "~27.1.1",
"ts-loader": "^9.2.7",
"typescript": "~4.5.3"
},
"scripts": {
"start": "webpack-dev-server",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage --passWithNoTests",
"test:watch": "jest --watch"
},
"dependencies": {
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-server": "^0.1.2"
}
}