-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "todo-list",
"version": "1.0.0",
"description": "A TO-DO application made with javascript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch": "webpack --watch",
"server": "webpack-dev-server --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abdelp/todo-list-js.git"
},
"keywords": [
"javascript"
],
"author": "Elbie Moonga & Abdel Pérez",
"license": "MIT",
"bugs": {
"url": "https://github.com/abdelp/todo-list-js/issues"
},
"homepage": "https://github.com/abdelp/todo-list-js#readme",
"devDependencies": {
"autoprefixer": "^9.8.5",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"exports-loader": "^1.1.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.8.0",
"stylelint-scss": "^3.17.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"pubsub-js": "^1.8.0"
}
}