-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
88 lines (88 loc) · 2.63 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
{
"name": "imarc-boilerplate",
"version": "4.1.0",
"description": "A light, customizable frontend starter kit and component library",
"author": "Imarc",
"license": "Apache-2.0",
"bin": "./boilerplate.js",
"repository": {
"type": "git",
"url": "git+https://github.com/imarc/boilerplate.git"
},
"bugs": {
"url": "https://github.com/imarc/boilerplate/issues"
},
"homepage": "https://github.com/imarc/boilerplate#readme",
"scripts": {
"fractal": "fractal",
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --watch-poll --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch:event": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.8.1",
"@frctl/consolidate": "^1.0.1",
"@frctl/fractal": "^1.1.7",
"cross-env": "^5.2.0",
"expose-loader": "^0.7.5",
"import-glob-loader": "^1.1.0",
"jquery": "^3.3.1",
"jsonfile": "^5.0.0",
"laravel-mix": "^4.0.15",
"normalize-scss": "^7.0.1",
"npm": "^6.9.0",
"slick-carousel": "^1.8.1",
"twig": "^1.13.2"
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"resolve-url-loader": "^2.3.1",
"sass": "^1.17.3",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"extends": [
"plugin:vue/recommended",
"standard"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"vue"
],
"rules": {
"comma-dangle": [
"warn",
{
"arrays": "always",
"objects": "always",
"imports": "never",
"exports": "never",
"functions": "never"
}
],
"indent": [
"warn",
4
]
}
}
}