forked from vuejs/pinia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.02 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
{
"name": "@pinia/root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"release": "node scripts/release.mjs",
"size": "lerna run size",
"build": "lerna run build",
"docs:build": "lerna run docs:build --scope @pinia/docs",
"play": "lerna run play",
"build:dts": "lerna run build:dts --parallel",
"lint": "prettier -c --parser typescript \"packages/*/{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
"lint:fix": "yarn run lint --write",
"test": "yarn run test:types && yarn run test:jest && lerna run test && yarn run build && yarn run build:dts && yarn test:dts",
"test:jest": "jest --coverage",
"test:types": "tsc --build ./tsconfig.json",
"test:dts": "lerna run test:dts",
"docs:api": "lerna run docs:api --scope @pinia/docs"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@sucrase/jest-plugin": "^2.2.0",
"@types/jest": "^27.0.3",
"@types/lodash.kebabcase": "^4.1.6",
"@types/node": "^16.11.12",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.1.1",
"enquirer": "^2.3.6",
"execa": "^6.0.0",
"expect": "^27.4.2",
"globby": "^12.0.2",
"jest": "^27.4.4",
"jest-mock-warn": "^1.1.0",
"lerna": "^4.0.0",
"lint-staged": "^12.1.2",
"lodash.kebabcase": "^4.1.1",
"minimist": "^1.2.5",
"p-series": "^3.0.0",
"pascalcase": "^1.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.61.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"semver": "^7.3.5",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.7",
"typescript": "^4.5.3",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
}
}