-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "yet-to-do",
"version": "1.0.0",
"description": "A to-do app to help you keep up with your goals and projects.",
"main": "./dist/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy:dist": "git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ivnosing/yet-to-do.git"
},
"keywords": [],
"author": "Iván Navarro Agulló",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ivnosing/yet-to-do/issues"
},
"homepage": "https://github.com/Ivnosing/yet-to-do#readme",
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"@babel/preset-typescript": "^7.8.3",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"cssnano": "^4.1.10",
"gulp": "^4.0.2",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.0.2",
"node-sass": "^4.13.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-stream": "^5.2.1"
},
"dependencies": {
"date-fns": "^2.10.0"
}
}