-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "new-hunger2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": "git@github.com:jrg-team/new-hunger.git",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "gh-pages-deploy -- 'A custom commit message'",
"build": "parcel build fe.html fe-course-list.html fe-detail.html java.html java-course-list.html java-detail.html success.html about.html apply.html courses.html --no-source-maps --public-url ./",
"clean-source": "rimraf README.md src webroot package.json src/css src/assets src/js dist",
"clear-dist": "rimraf dist"
},
"gh-pages-deploy": {
"staticpath": "dist",
"prep": [
"clear-dist",
"build"
],
"commit": "a custom commit message",
"post": [
"clean-source"
],
"noprompt": true
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^9.1.1",
"babel-preset-env": "^1.7.0",
"jquery": "^3.3.1",
"node-sass": "^4.9.3",
"swiper": "^4.3.5"
},
"devDependencies": {
"gh-pages-deploy": "^0.5.0",
"babel-core": "^6.26.3",
"cssnano": "^4.0.5"
}
}