This repository has been archived by the owner on Mar 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.62 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
{
"name": "ashes-live",
"version": "1.12.0",
"scripts": {
"venv": ". venv/bin/activate",
"upgrade": ". venv/bin/activate && pip3 install -r requirements.txt && npm install",
"build": "webpack --mode=development && ./node_modules/less/bin/lessc app/static/less/styles.less app/static/css/styles.css",
"build-production": "export ENVIRONMENT='production' && export NODE_ENV='production' && webpack --mode=production && ./node_modules/less/bin/lessc app/static/less/styles.less app/static/css/styles.min.css --clean-css && . venv/bin/activate && ./cli.py cdnize_style_urls",
"start": "export FLASK_ENV=development && . venv/bin/activate && ./cli.py runserver -r",
"lint": "eslint --ext .js,.vue app/static/src"
},
"homepage": "https://ashes.live",
"license": "ISC",
"private": true,
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^1.7.0",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"less": "^3.12.0",
"less-plugin-clean-css": "^1.5.1",
"lodash-webpack-plugin": "^0.11.5",
"vue-loader": "^14.2.4",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"lodash": "^4.17.19",
"noty": "^3.1.3",
"qwest": "^4.5.0",
"tippy.js": "^1.4.2",
"vue": "^2.6.11",
"vuex": "^3.5.1"
}
}