-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 901 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 901 Bytes
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
{
"name": "@carv/tools-workspace",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"format": "prettier --ignore-path .gitignore --write .",
"preinstall": "npx only-allow yarn",
"publish": "lerna publish",
"version": "npm run format"
},
"prettier": "@carv/prettier-config",
"eslintConfig": {
"extends": "@carv/eslint-config",
"root": true
},
"jest": {
"projects": [
"<rootDir>/examples/svelte-module",
"<rootDir>/packages/scripts"
]
},
"devDependencies": {
"@carv/eslint-config": "^1.3.1",
"@carv/prettier-config": "^1.0.3",
"@carv/scripts": "^1.1.1",
"@carv/types": "^1.2.0",
"eslint": "^7.4.0",
"jest": "^26.1.0",
"lerna": "^3.20.2",
"nps": "^5.9.12",
"only-allow": "^1.0.0",
"prettier": "^2.0.5",
"svelte": "^3.24.0",
"typescript": "^4.1.0"
}
}