-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
46
47
48
49
50
51
{
"name": "sea-battle",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build": "webpack",
"start": "node app.js",
"server": "nodemon app.js",
"dev": "cross-env NODE_ENV=development concurrently \"npm run build\" \"npm run server\"",
"prod": "cross-env NODE_ENV=production concurrently \"npm run build\" \"npm run start\""
},
"browserslist": "> 0.25%, not dead",
"repository": {
"type": "git",
"url": "git+https://github.com/alkhimenok/sea-battle.git"
},
"keywords": [],
"author": "Kirill Alkhimenok <alkhimenok.kirill.leonidovich@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/alkhimenok/sea-battle/issues"
},
"homepage": "https://github.com/alkhimenok/sea-battle#readme",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^6.4.0",
"copy-webpack-plugin": "^10.2.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"css-mqpacker": "^7.0.0",
"cssnano": "^5.0.12",
"mini-css-extract-plugin": "^2.4.5",
"nodemon": "^2.0.15",
"normalize.css": "^8.0.1",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"sass": "^1.45.0",
"sass-loader": "^12.4.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"ejs": "^3.1.6",
"express": "^4.17.1"
}
}