-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.2 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
{
"name": "to-do-app",
"version": "1.0.0",
"description": "a to-do-list app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack-dev-server --open",
"watch:sass": "node-sass ./src/sass/main.scss ./dist/css/style.css -w",
"compile:sass": "node-sass ./src/sass/main.scss ./dist/css/style.comp.css",
"concat:css": "concat -o ./dist/css/style.concat.css dist/css/icon-font.css dist/css/style.comp.css",
"compress:css": "node-sass dist/css/style.concat.css dist/css/style.css --output-style compressed",
"build:css": "npm-run-all compile:sass concat:css compress:css",
"deploy": "firebase deploy --only hosting"
},
"author": "Sami",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"concat": "^1.0.3",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"firebase": "^6.3.4",
"firebaseui": "^4.1.0",
"uniqid": "^5.0.3"
}
}