This repository has been archived by the owner on Jul 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.16 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
{
"private": true,
"name": "inaka-portal",
"repository": {
"type": "git",
"url": "git+https://github.com/SofPyon/inaka-portal.git"
},
"author": "Soji Takahashi (SofPyon)",
"license": "MIT License",
"bugs": {
"url": "https://github.com/SofPyon/inaka-portal/issues"
},
"homepage": "https://github.com/SofPyon/inaka-portal#readme",
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"docker-bash": "cd docker_dev/ && docker-compose exec web bash",
"eslint-check": "eslint --ext js,vue ./resources",
"stylelint-check": "stylelint ./resources/**/*.{vue,scss}"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.vue": [
"eslint --fix",
"stylelint --fix",
"git add"
],
"*.scss": [
"stylelint --fix",
"git add"
],
"*.php": [
"composer phpcbf",
"composer phpcs",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "2.0.1",
"cross-env": "^7.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.0.1",
"husky": "^3.1.0",
"jquery": "^3.5",
"lint-staged": "^9.5.0",
"lodash": "^4.17.13",
"popper.js": "^1.12",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"resolve-url-loader": "^2.3.1",
"sass": "^1.15.2",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^2.0.1",
"stylelint": "^12.0.0",
"stylelint-config-prettier": "^8.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-order": "^3.1.1",
"stylelint-scss": "^3.13.0",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"axios": "^0.19",
"bootstrap": "^4.0.0",
"laravel-mix": "^4.0.7",
"laravel-mix-polyfill": "^2.0.0",
"marked": "^0.6.2",
"replace": "^1.1.1",
"turbolinks": "^5.2.0",
"vue": "^2.5.17",
"vue-global-events": "^1.1.2",
"vuedraggable": "^2.20.0",
"vuex": "^3.1.1",
"wysiwyg.css": "^0.0.3"
}
}