-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
75 lines (75 loc) · 2.19 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
{
"name": "offline-diff-viewer",
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "rimraf ./dist",
"dev": "npm run clean && nuxt",
"build": "npm run clean && nuxt build",
"start": "nuxt start",
"generate": "npm run clean && nuxt generate",
"lint:jsts": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
"prepare": "npx husky install",
"lint": "npm run lint:jsts -- --fix && npm run lint:style",
"test": "jest --passWithNoTests"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{js,vue,ts}": "eslint",
"*.{css,vue}": "stylelint"
},
"dependencies": {
"@monaco-editor/loader": "^1.4.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sitemap": "^2.4.0",
"@tailwindcss/forms": "^0.5.7",
"core-js": "^3.15.1",
"diff": "^5.0.0",
"diff-match-patch": "^1.0.5",
"driver.js": "^0.9.8",
"monaco-editor": "^0.43.0",
"monaco-editor-webpack-plugin": "^7.1.0",
"monaco-languageclient": "^7.1.0",
"nuxt": "^2.15.7",
"pako": "^2.0.4",
"sass": "^1.43.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@nuxt/types": "^2.15.7",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/tailwindcss": "^4.2.0",
"@vue/test-utils": "^1.2.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.0.5",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.12.1",
"husky": "^6.0.0",
"jest": "^27.0.5",
"lint-staged": "^10.5.4",
"postcss": "^8.3.5",
"rimraf": "^3.0.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"ts-jest": "^27.0.3",
"vue-jest": "^3.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}