-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "technica-site-2021",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"build-scss": "node-sass ./scss -o ./css && npm run min",
"web": "nodemon -e scss,js --ignore js/effects.min.js -x \"npm run build-scss\"",
"scss-windows": "node-sass ./scss -o ./css && npm run min",
"min": "minify ./css/main.css > ./css/main.min.css; minify ./css/base.css > ./css/base.min.css; minify ./js/effects.js > ./js/effects.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gotechnica/technica-site-2021.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gotechnica/technica-site-2021/issues"
},
"homepage": "https://github.com/gotechnica/technica-site-2021#readme",
"dependencies": {
"flickity": "^2.2.2",
"hoek": "^5.0.4",
"jsonld": "^5.2.0",
"minify": "^5.1.1",
"node-sass": "^6.0.1",
"nodemon": "^2.0.7",
"sass": "^1.26.9"
},
"devDependencies": {
"prettier": "2.3.0"
}
}