forked from nbswords/web-design-final-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.39 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
{
"name": "ccns.github.io",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.0",
"bootstrap": "^5.2.2",
"jquery": "^3.6.1",
"popper.js": "^1.16.0"
},
"devDependencies": {
"ejs": "^3.1.8",
"moment": "^2.29.4",
"axios": "^1.4.0"
},
"scripts": {
"build": "npm run gen",
"gen": "node generate.js; npm run bundle; npm run resources",
"clean": "rm -rvf public/*",
"bootstrap": "cp -r node_modules/bootstrap/dist -T public/frameworks/bootstrap",
"fontawesome": "cp -r node_modules/@fortawesome/fontawesome-free -T public/frameworks/fontawesome-free",
"jquery": "cp -r node_modules/jquery/dist/ -T public/frameworks/jquery",
"bundle": "mkdir -p public/frameworks/; npm run bootstrap; npm run fontawesome; npm run jquery",
"resources": "mkdir -p public/; cp -r resources/ css/ js/ model/ fonts/ -t public/",
"push": "#'This command is deprecated! See README.md to learn how to update pages.'",
"update": "#'This command is deprecated! See README.md to learn how to update pages.'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccns/ccns.github.io.git"
},
"author": "Daniel Chen",
"license": "GPL",
"bugs": {
"url": "https://github.com/ccns/ccns.github.io/issues"
},
"homepage": "https://github.com/ccns/ccns.github.io#readme"
}