-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "life-game",
"version": "1.0.0",
"description": "Conway's Game of Life",
"main": "index.js",
"scripts": {
"start": "webpack serve",
"build": "webpack",
"eslint": "eslint src/**/*.{js,ts}"
},
"author": "Pavel Kovalenkov",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-typescript": "^7.23.3",
"@types/html-webpack-plugin": "^3.2.9",
"@types/lodash": "^4.14.165",
"@types/webpack": "^5.28.5",
"@types/webpack-dev-server": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-proposal": "^2.3.0",
"html-webpack-plugin": "^5.5.3",
"sass": "^1.27.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^4.15.1"
}
}