-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.58 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
46
47
48
49
50
51
52
{
"name": "flaskbb-theme-aurora-mod",
"description": "The theme for the FlaskBB website. Based upon the Aurora Theme.",
"version": "1.0.0",
"license": "BSD-3-Clause",
"author": "Peter Justin <[email protected]>",
"url": "https://flaskbb.org",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/sh4nks/flaskbb"
},
"bugs": "https://github.com/sh4nks/flaskbb/issues",
"keywords": [
"flaskbb",
"theme",
"aurora"
],
"scripts": {
"clean": "rm -f node_modules",
"autoprefixer": "postcss -u autoprefixer -r static/css/*",
"scss": "./tools/build_css",
"uglify": "./tools/build_js",
"imagemin": "imagemin src/img/* -o static/img",
"fonts": "./tools/build_fonts",
"build:css": "npm run scss && npm run autoprefixer",
"build:js": "npm run uglify",
"build:images": "npm run imagemin && npm run fonts",
"build:all": "npm run build:css && npm run build:js && npm run build:images",
"watch:css": "onchange 'src/scss' -- npm run build:css",
"watch:js": "onchange 'src/js' -- npm run build:js",
"watch:all": "npm-run-all -p watch:css watch:js"
},
"devDependencies": {
"autoprefixer": "^10.0.4",
"imagemin-cli": "^6.0.0",
"sass": "^1.29.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.2.10",
"postcss-cli": "^8.3.0",
"uglify-js": "^3.12.1"
},
"dependencies": {
"bootstrap-markdown": "^2.10.0",
"bootstrap-sass": "^3.4.1",
"font-awesome": "^4.7.0",
"jquery": "^3.5.1",
"jquery-textcomplete": "^1.8.5",
"marked": "^2.0.0"
}
}