-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.89 KB
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
{
"name": "clutch",
"version": "1.0.0",
"description": "color palette generator",
"author": "Mr. Darcy Murphy",
"private": true,
"engines": {
"node": "14.x"
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "ava",
"test:unit": "cross-env TEST=unit ava --config unit.config.js",
"test:e2e": "cross-env TEST=e2e ava --config e2e.config.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/vue-fontawesome": "^0.1.10",
"@nuxtjs/style-resources": "^1.0.0",
"chroma-js": "^2.1.0",
"lodash": "^4.17.20",
"nuxt": "2.12.2",
"uuid": "^8.1.0",
"vuedraggable": "^2.24.1",
"vuex-persist": "^3.1.3",
"snyk": "^1.454.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.2",
"@nuxtjs/eslint-module": "^1.0.0",
"@nuxtjs/stylelint-module": "^3.1.0",
"@vue/test-utils": "^1.0.0-beta.27",
"ava": "^2.2.0",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"browser-env": "^3.2.5",
"eslint": "^6.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^2.6.0",
"lint-staged": "^8.2.1",
"node-sass": "^4.13.1",
"prettier": "^1.16.4",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^2.0.0",
"sass-loader": "^8.0.2",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^3.0.0"
},
"snyk": true
}