-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "to-do-list_vanilla-js",
"version": "1.0.0",
"description": "A To-Do List application using Vanilla JS",
"private": true,
"scripts": {
"test": "jest",
"start": "webpack-dev-server --open --config ./webpack/webpack.dev.js",
"build": "webpack --config ./webpack/webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tarhi-saad/To-Do-List_vanilla-JS.git"
},
"keywords": [
"To-Do List",
"Vanilla JS",
"Single Responsibility",
"Loosely Coupled Objects",
"Unit testing",
"TDD",
"SOLID principles"
],
"author": "Saad Tarhi",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/tarhi-saad/To-Do-List_vanilla-JS/issues"
},
"homepage": "https://github.com/tarhi-saad/To-Do-List_vanilla-JS#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^8.0.0",
"svg-inline-loader": "^0.8.0",
"terser-webpack-plugin": "^2.3.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"flatpickr": "^4.6.3"
}
}