-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.72 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
{
"name": "rootelements",
"version": "1.0.0",
"description": "Root Elements website",
"main": "index.js",
"scripts": {
"build-css": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 src/scss/main.scss dist/css/main.css",
"build-js": "webpack",
"build": "npm-run-all build-css build-js copy-html copy-external-deps",
"copy-external-deps": "cp node_modules/bootstrap/dist/css/bootstrap.min.css dist/css && make-dir dist/js && cp node_modules/jquery/dist/jquery.min.js dist/js && cp node_modules/popper.js/dist/umd/popper.min.js dist/js && cp node_modules/bootstrap/dist/js/bootstrap.min.js dist/js",
"copy-html": "cp src/*.html dist",
"watch-dist": "live-server dist --no-browser",
"watch-html": "nodemon --watch src/ --ext html --exec \"npm run copy-html\"",
"watch-scss": "nodemon --watch src/scss/ --ext scss --exec \"npm run build-css\"",
"watch-js": "nodemon --watch src/js/ --ext js --exec \"npm run build-js\"",
"watch": "npm-run-all build --parallel watch-dist watch-html watch-scss watch-js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renzil/rootelements.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/renzil/rootelements/issues"
},
"homepage": "https://github.com/renzil/rootelements#readme",
"dependencies": {
"bootstrap": "^5.2.2",
"jquery": "^3.6.1",
"popper.js": "^1.16.1"
},
"devDependencies": {
"live-server": "^1.1.0",
"make-dir-cli": "^3.0.0",
"node-sass": "^7.0.3",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}