-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 941 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": "seabattle-bundled",
"version": "1.0.0",
"description": "SeaBattle Game rewritten in a modern way with Webpack and TypeScript.",
"main": "src/index.ts",
"scripts": {
"build": "rm -rf dist && npx webpack",
"start:dev-server": "npx webpack serve",
"prettier": "prettier --check \"src/**/*.(ts|.html)\"",
"prettier:fix": "prettier --write \"src/**/*.(ts|.html)\""
},
"keywords": [
"seabattle",
"sea battle",
"sea battle game"
],
"author": "Sergey Vakhramov",
"license": "MIT",
"devDependencies": {
"css-loader": "^5.2.0",
"eslint": "^7.23.0",
"eslint-plugin-prettier": "^3.3.1",
"html-webpack-plugin": "^5.3.1",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}