-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1021 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
35
36
37
38
{
"name": "naval-warfare",
"version": "1.0.0",
"description": "## Project info",
"main": "index.js",
"private": true,
"scripts": {
"test": "jest",
"watch:jest": "jest --watch *.js",
"watch:webpack": "webpack --watch",
"start:webpack": "webpack serve --open",
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"deploy": "git subtree push --prefix dist origin gh-pages"
},
"author": "jcampbell57",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@eslint/js": "^9.2.0",
"babel-jest": "^29.7.0",
"css-loader": "^7.1.1",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.2.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"prettier": "3.2.5",
"style-loader": "^4.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"lodash": "^4.17.21"
}
}