-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.39 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.39 KB
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
{
"name": "pw-bootstrap",
"version": "1.0.0",
"description": "Paris Web custom BS4 build",
"repository": {
"type": "git",
"url": "git+https://github.com/Paris-Web/pw-bootstrap.git"
},
"author": {
"name": "Gaël Poupard",
"url": "https://www.ffoodd.fr",
"email": "gael+github@ffoodd.fr"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Paris-Web/pw-bootstrap/issues"
},
"files": [
"static/",
"scss/*.scss"
],
"scripts": {
"build": "node-sass scss -o static/css --include-path node_modules --indent-type tab",
"postbuild": "concurrently --kill-others \"npm:css:*\"",
"css:bootstrap": "lightningcss static/css/bootstrap.css -o static/css/bootstrap.min.css --minify --browserslist --sourcemap",
"css:public": "lightningcss static/css/public.css -o static/css/public.min.css --minify --browserslist --sourcemap",
"css:votes": "lightningcss static/css/votes.css -o static/css/votes.min.css --minify --browserslist --sourcemap",
"start": "concurrently --kill-others \"npm:watch\" \"npm:serve\"",
"serve": "servor --browse --reload --secure",
"watch": "nodemon --watch scss --ext scss --exec \"npm run build\""
},
"dependencies": {
"bootstrap": "^4.6.2"
},
"devDependencies": {
"concurrently": "^9.2.1",
"lightningcss-cli": "^1.32.0",
"node-sass": "^9.0.0",
"nodemon": "^3.1.14",
"servor": "^4.0.2"
}
}