-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathpackage.json
45 lines (45 loc) · 1.53 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
{
"name": "my-web-projects",
"version": "1.0.0",
"description": "this is my website project collection",
"main": "website/script/script.js",
"scripts": {
"start": "live-server ./",
"dev": "live-server ./gh-pages",
"home": "cd home & npm run dev",
"home:build": "cd home & npm run build",
"50-website": "cd 50-mini-web-website & npm run dev",
"50-website-build": "cd 50-mini-web-website & npm run build",
"animate": "bash scripts/animate.sh",
"css": "bash scripts/css.sh",
"echarts": "bash scripts/echarts.sh",
"jQuery": "bash scripts/jQuery.sh",
"js": "bash scripts/js.sh",
"react": "bash scripts/react.sh",
"vue": "bash scripts/vue.sh",
"threejs": "bash scripts/threejs.sh",
"typescript": "bash scripts/typescript.sh",
"allBuild": "node build.js & npm run home:build & npm run 50-website-build",
"build-website": "node build.js",
"deploy": "git subtree push --prefix gh-pages origin gh-pages",
"commit": "bash deploy.sh",
"build-deploy": "node build.js & npm run home:build & npm run 50-website-build & git subtree push --prefix gh-pages origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eveningwater/my-web-projects.git"
},
"keywords": [
"web",
"projects"
],
"author": "eveningwater",
"license": "ISC",
"bugs": {
"url": "https://github.com/eveningwater/my-web-projects/issues"
},
"homepage": "https://github.com/eveningwater/my-web-projects#readme",
"devDependencies": {
"live-server": "^1.2.2"
}
}