-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.89 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
{
"name": "nuxt-kanban-app",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt-ts",
"build": "nuxt-ts build",
"start": "nuxt-ts start",
"generate": "nuxt-ts generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "yarn lint --fix",
"test:unit": "jest --verbose --no-cache",
"cy:open": "cypress open --config-file test/e2e/cypress.json",
"cy:run": "cypress run --spec 'test/e2e/integration/app/*.spec.js --config-file test/e2e/cypress.json'"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint",
"pre-push": "yarn test:unit"
}
},
"dependencies": {
"@nuxt/typescript-runtime": "2.0.1",
"@nuxtjs/toast": "3.3.1",
"@tailwindcss/custom-forms": "0.2.1",
"core-js": "3.8.3",
"nuxt": "2.14.12",
"nuxt-vuex-localstorage": "1.2.7",
"uuid": "8.3.2",
"v-click-outside": "3.1.2",
"verte": "0.0.12",
"vuedraggable": "2.24.3"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "1.5.0",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@nuxt/types": "2.14.12",
"@nuxt/typescript-build": "2.0.4",
"@nuxtjs/color-mode": "2.0.3",
"@nuxtjs/eslint-config": "5.0.0",
"@nuxtjs/eslint-config-typescript": "5.0.0",
"@nuxtjs/eslint-module": "3.0.2",
"@nuxtjs/tailwindcss": "3.4.2",
"@types/uuid": "8.3.0",
"@vue/test-utils": "1.1.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"cypress": "6.3.0",
"eslint": "7.19.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-nuxt": "2.0.0",
"eslint-plugin-prettier": "3.3.1",
"flush-promises": "1.0.2",
"husky": "4.3.8",
"jest": "26.6.3",
"prettier": "2.2.1",
"tailwindcss-dark-mode": "1.1.7",
"ts-jest": "26.5.0",
"vue-jest": "3.0.7"
}
}