-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 855 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
{
"name": "game-of-life",
"version": "1.2.0",
"description": "Game of Life, written with TypeScript",
"main": "index.ts",
"scripts": {
"serve": "webpack serve --open --mode development --config webpack.config.js",
"build": "webpack --mode production --config webpack.prod.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Xander Jones",
"repository": {
"type": "git",
"url": "https://github.com/xander-jones/game-of-life.git"
},
"license": "ISC",
"devDependencies": {
"html-webpack-plugin": "^5.3.2",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"webpack": "^5.50.0",
"webpack-bugsnag-plugins": "^1.8.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@bugsnag/js": "^7.11.0"
}
}