-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "root",
"description": "A dead simple code editor with syntax highlighting and line numbers.",
"author": {
"name": "Mesut Koca",
"email": "[email protected]"
},
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "eslint packages/"
}
},
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"example": "yarn workspace example serve",
"build:example": "yarn workspace example build",
"build": "yarn workspace vue-prism-editor build",
"dev": "yarn workspace vue-prism-editor dev",
"lint": "eslint packages/",
"test": "yarn workspace vue-prism-editor test",
"test:watch": "yarn workspace vue-prism-editor test:watch",
"test:cov": "yarn workspace vue-prism-editor test:cov"
},
"devDependencies": {
"@changesets/cli": "^2.9.2",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-vue": "^6.2.2",
"eslint-plugin-vue-libs": "^4.0.0",
"husky": "^4.2.5",
"lerna": "^3.22.0",
"prettier": "^2.0.5"
}
}