-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
96 lines (96 loc) · 2.23 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
93
94
95
96
{
"name": "wheretofind.me",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service build",
"inspect": "vue-cli-service inspect",
"js:lint": "vue-cli-service lint",
"js:serve": "vue-cli-service serve",
"js:test:unit": "vue-cli-service test:unit --coverage",
"postinstall": "yarn build",
"py:serve": "python manage.py runserver",
"py:migrate": "python manage.py migrate",
"py:makemigrations": "python manage.py makemigrations wheretofindme",
"py:test:unit": "pytest",
"serve": "run-p js:serve py:serve",
"test": "run-s js:test:unit py:test:unit"
},
"dependencies": {
"axios": "^0.21.1",
"bootstrap": "^4.4.1",
"bootstrap-sass": "^3.4.0",
"jquery": "^3.5.0",
"popper.js": "^1.14.6",
"sass": "^1.49.7",
"sass-loader": "^8.0.0",
"vue": "^2.6.11",
"vue-axios": "^2.1.4",
"vue-cookie": "^1.1.4",
"vuedraggable": "^2.17.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.2",
"@vue/cli-plugin-eslint": "^4.1.2",
"@vue/cli-plugin-unit-jest": "^4.1.2",
"@vue/cli-service": "^4.1.2",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.0-beta.30",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.1.2",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5",
"vue-template-compiler": "^2.6.14"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/prettier"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"engines": {
"yarn": "1.x",
"node": "^18.17"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
],
"*.py": [
"isort",
"black",
"flake8",
"git add"
]
}
}