-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
92 lines (92 loc) · 2.33 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"dependencies": {
"bulma-addons": "^0.1.17",
"bulma-fluent": "^0.4.2",
"intersection-observer": "^0.11.0",
"register-service-worker": "^1.7.1",
"scrollama": "^2.2.1",
"vue": "^2.6.11",
"vue-bulma-accordion": "^0.5.2",
"vue-router": "^3.4.3",
"vuex": "^3.5.1"
},
"devDependencies": {
"@types/eslint": "^7.2.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node-sass": "^4.11.1",
"@types/postcss-import": "^12.0.0",
"@types/postcss-url": "^8.0.1",
"@types/prettier": "^2.0.2",
"@vue/cli-plugin-babel": "^4.5.3",
"@vue/cli-plugin-eslint": "^4.5.3",
"@vue/cli-plugin-pwa": "^4.5.3",
"@vue/cli-service": "^4.5.3",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"cname-webpack-plugin": "^2.0.1",
"eslint": "^7.7.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"imports-loader": "^1.1.0",
"lint-staged": "^10.2.11",
"node-sass": "^4.14.1",
"postcss-import": "^12.0.1",
"postcss-url": "^8.0.0",
"prettier": "^2.0.5",
"sass-loader": "~9.0.3",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"plugin:vue/recommended",
"@vue/prettier"
],
"globals": {},
"parser": "vue-eslint-parser",
"parserOptions": {
"ecmaVersion": 2018,
"parser": "babel-eslint",
"sourceType": "module"
},
"root": true,
"rules": {}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"name": "brain.js",
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"private": true,
"scripts": {
"build": "vue-cli-service build --modern",
"deploy": "git push && git subtree push --prefix dist origin gh-pages",
"dev": "npm run serve",
"lint": "vue-cli-service lint --fix",
"serve": "vue-cli-service serve --open",
"sync": "git pull && git subtree pull --prefix dist origin gh-pages"
},
"version": "0.1.0"
}