-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.43 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
{
"name": "openwiden-frontend",
"version": "1.0.0",
"description": "OpenWiden frontend app",
"author": "OpenWiden",
"private": true,
"scripts": {
"build": "nuxt build",
"build:staticProject": "nuxt generate",
"dev": "cross-env NODE_ENV=development nodemon",
"lint:packageScripts": "scriptlint --strict",
"lint:prettier": "prettier --check '**/*.{vue,js,ts,json,yml}'",
"lint:styles": "stylelint './src/components/**/*.{css,vue}'",
"lint:ts": "eslint --ext .ts ./src/",
"start": "cross-env NODE_ENV=production nodemon",
"test": "jest --collectCoverage",
"test:client": "jest --config ./jest/jest.client.config.js",
"test:node": "jest --config --passWithNoTests ./jest/jest.node.config.js",
"test:watch": "jest --watch"
},
"dependencies": {
"@nuxt/typescript-runtime": "^0.3.9",
"@nuxtjs/axios": "^5.9.5",
"cookie-parser": "^1.4.4",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"js-cookie": "^2.2.1",
"nuxt": "^2.14.7",
"postcss-hexrgba": "^2.0.0",
"postcss-nested": "^4.2.1",
"vue-select": "^3.9.5"
},
"devDependencies": {
"@nuxt/typescript-build": "^0.5.7",
"@nuxtjs/eslint-config-typescript": "^1.0.2",
"@nuxtjs/eslint-module": "^1.0.0",
"@nuxtjs/stylelint-module": "^3.1.0",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/user-event": "^10.0.0",
"@testing-library/vue": "^4.1.0",
"@types/cookie-parser": "^1.4.2",
"@types/js-cookie": "^2.2.5",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-jest": "^25.1.0",
"cssmem": "^1.2.4",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^0.4.2",
"lint-staged": "^10.0.0",
"nodemon": "^1.18.9",
"prettier": "^2.0.4",
"scriptlint": "^2.1.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^20.0.0",
"ts-node": "^8.9.0",
"vue-jest": "^4.0.0-0",
"vue-property-decorator": "^8.4.1"
},
"lint-staged": {
"src/**/*.ts": [
"eslint",
"jest --findRelatedTests"
],
"*.{vue,js,ts,json,yml}": "prettier --check",
"src/**/*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint:packageScripts"
}
}
}