-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "practica_todolist",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf dist && webpack --mode=production",
"build:dev": "rimraf dist && webpack --mode=development",
"start:dev": "webpack-dev-server --mode=development --open"
},
"keywords": [],
"author": "cqrlosArch",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/cqrlosArch/practicaTODOList1.git"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.3",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/preset-env": "^7.10.3",
"autoprefixer": "^9.8.4",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"pug": "^3.0.0",
"pug-loader": "^2.4.0",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"file-loader": "^6.0.0",
"nanoid": "^3.1.10"
}
}