-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "todo_app_js",
"version": "1.0.0",
"description": "Practice JS with CodersInHoods",
"private": true,
"browserslist": [
"last 4 version",
"> 1%",
"IE 10"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch --env.NODE_ENV=development",
"start": "webpack-dev-server --open --env.NODE_ENV=development",
"build": "webpack --env.NODE_ENV=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodersInHoods/Todo_app_js.git"
},
"keywords": [
"js"
],
"author": "CodersInHoods",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodersInHoods/Todo_app_js/issues"
},
"homepage": "https://github.com/CodersInHoods/Todo_app_js#readme",
"devDependencies": {
"autoprefixer": "^9.6.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.0.0",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"json-server": "^0.14.2",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1"
}
}