-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.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
{
"name": "visible-scratch-skillz",
"private": true,
"scripts": {
"lint:check": "run-p lint:check:*",
"lint:check:eslint": "eslint 'app/javascript/**/*.{js,vue}' --max-warnings=0",
"lint:check:prettier": "prettier app/javascript/**/*.{js,vue} --check",
"lint:fix": "run-p lint:fix:*",
"lint:fix:eslint": "eslint 'app/javascript/**/*.{js,vue}' --max-warnings=0 --fix",
"lint:fix:prettier": "prettier app/javascript/**/*.{js,vue} -w",
"build": "yarn && webpack --mode=production",
"build:dev": "yarn && webpack --mode=development",
"dev": "webpack-dev-server --mode=development"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^3.0.0-4",
"@rails/actioncable": "^6.0.0",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@vue/compiler-sfc": "^3.1.5",
"eslint-config-prettier": "^8.5.0",
"glob": "^8.0.3",
"konva": "^8.1.1",
"stylelint": "^14.5.3",
"stylelint-config-standard": "^25.0.0",
"vue": "^3.1.5",
"vue-loader": "^16.2.0",
"webpack": "^5.73.0",
"webpack-cli": "^3.3.12",
"yarn-run-all": "^3.1.1"
},
"version": "0.1.0",
"devDependencies": {
"eslint": "^8.10.0",
"eslint-plugin-vue": "^8.5.0",
"mini-css-extract-plugin": "~1.6",
"prettier": "2.5.1",
"webpack-dev-server": "^3.11.2",
"webpack-manifest-plugin": "^5.0.0"
}
}