-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.09 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
{
"name": "game-of-life",
"version": "1.0.0",
"description": "A Game of Life version written in TypeScript",
"homepage": "https://tonys-game-of-life.vercel.app/",
"main": "script.js",
"scripts": {
"build": "webpack --config 'webpack-build.config.js'",
"dev": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tonygustafsson/game-of-life.git"
},
"author": "Tony Gustafsson",
"license": "ISC",
"bugs": {
"url": "https://github.com/tonygustafsson/game-of-life/issues"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"babel-loader": "^9.1.0",
"eslint": "^8.27.0",
"path": "^0.12.7",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
}
}