-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 1.1 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
{
"name": "dsc-blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"deploy": "firebase deploy",
"build": "npm run build-js && npm run minify",
"build-js": "browserify ./assets/js/app.js -o ./assets/js/dist/bundle.js",
"watch-js": "watchify ./assets/js/app.js -o ./assets/js/dist/bundle.js -v",
"minify": "grunt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DSC-Unilag/DSC-Blog.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DSC-Unilag/DSC-Blog/issues"
},
"homepage": "https://github.com/DSC-Unilag/DSC-Blog#readme",
"dependencies": {
"browserify": "^16.5.0",
"firebase": "^7.5.2",
"sweetalert": "^2.1.2",
"watchify": "^3.11.1"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babelify": "^10.0.0",
"grunt": "^1.0.4",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-uglify": "^4.0.1"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
}
}