-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 2.45 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "xsacdb",
"private": true,
"dependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@sentry/browser": "^5.12.1",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"babel-loader": "^8.0.6",
"bootstrap": "v4.0.0-alpha.6",
"bootstrap-datepicker": "^1.9.0",
"bourbon": "~4.3.4",
"core-js": "^3.6.4",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.1.2",
"expose-loader": "^0.7.5",
"file-loader": "^4.2.0",
"font-awesome": "^4.7.0",
"jquery": "^2.2.3",
"jquery-form": "^3.46.0",
"jquery.tokeninput": "https://github.com/loopj/jquery-tokeninput/archive/v1.7.0.tar.gz",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^8.0.2",
"tether": "^1.4.7",
"typescript": "^3.7.5",
"vue": "^2.6.11",
"vue-class-component": "^7.2.2",
"vue-loader": "^15.8.3",
"vue-property-decorator": "^8.4.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.5",
"webpack-bundle-tracker": "^0.4.3",
"webpack-cli": "^3.3.10"
},
"devDependencies": {
"husky": "^4.2.1",
"lint-staged": "^10.0.7"
},
"scripts": {
"build": "npm run build:prod",
"build:dev": "webpack --progress --colors --mode=development",
"build:prod": "webpack --progress --colors --mode=production",
"watch": "webpack --progress --colors --mode=development --watch",
"types": "tsc",
"lint": "npm run lint:fix",
"lint:fix": "eslint 'js/**' --fix",
"lint:report": "eslint 'js/**'",
"lint:junit": "eslint 'js/**' --format junit --output-file junit-eslint.xml"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"js/**": "eslint --fix"
},
"browserslist": "> 0.25%, not dead"
}