forked from ditojs/dito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.06 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
{
"name": "dito",
"private": true,
"description": "Dito.js is a declarative and modern web framework with a focus on API driven development, based on Koa.js, Objection.js and Vue.js",
"repository": "https://github.com/ditojs/dito",
"author": "Jürg Lehni <[email protected]> (http://scratchdisk.com)",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean --parallel",
"build": "lerna run build --stream",
"watch": "lerna run watch --parallel",
"prepare": "yarn lint && lerna run prepare --stream",
"test": "node --icu-data-dir=node_modules/full-icu node_modules/.bin/jest",
"lint": "cross-env NODE_ENV=production eslint --ext .js,.vue packages/**/src",
"lint:fix": "cross-env NODE_ENV=production eslint --fix --ext .js,.vue packages/**/src"
},
"lint-staged": {
"packages/**/src/**/*.{js,vue}": "cross-env NODE_ENV=production eslint"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"engines": {
"node": ">= 14.0.0",
"yarn": ">= 1.0.0"
},
"workspaces": [
"packages/*"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.11.5",
"@babel/eslint-plugin": "^7.11.5",
"@babel/node": "^7.10.5",
"babel-jest": "^26.5.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-module-resolver": "^4.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^7.0.1",
"full-icu": "^1.3.1",
"husky": "^4.3.0",
"jest": "^26.5.3",
"lerna": "^3.22.1",
"lint-staged": "^10.4.0",
"minimist": "^1.2.5",
"rimraf": "^3.0.2",
"vue-eslint-parser": "^7.1.0"
}
}