-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 981 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": "odin-todoapp",
"version": "1.0.0",
"private": true,
"description": "Todo app for Odin Project",
"main": "index.js",
"scripts": {
"start": "set NODE_ENV=development&&webpack serve --open",
"dev": "set NODE_ENV=development&&webpack",
"build": "set NODE_ENV=production&&webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nelfimov/odin-todoapp.git"
},
"author": "Nelfimov",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nelfimov/odin-todoapp/issues"
},
"homepage": "https://github.com/Nelfimov/odin-todoapp#readme",
"devDependencies": {
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.16",
"postcss-loader": "^7.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.1"
}
}