-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.88 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
{
"private": true,
"workspaces": [
"packages/@nodepack/*",
"packages/test/*"
],
"scripts": {
"dev": "lerna run dev --stream --scope '@nodepack/*' --no-sort --concurrency 99",
"lint": "yarn run test:lint --fix",
"build": "lerna run build --scope '@nodepack/*'",
"clean": "rimraf packages/test/*",
"sync": "node scripts/syncDeps.js",
"release": "yarn clean && yarn --pure-lockfile && yarn test && node scripts/release.js",
"test": "yarn run test:types && yarn run test:lint",
"test:types": "tsc --noEmit",
"test:lint": "eslint packages/@nodepack --ext .js,.jsx,.ts,.tsx",
"test:lerna-all": "lerna run test",
"changelog": "node scripts/genChangelog.js run",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"devDependencies": {
"@nodepack/conventional-changelog": "^0.1.0",
"@types/ejs": "^2.6.0",
"@types/events": "^1.2.0",
"@types/fs-extra": "^8.0.0",
"@types/globby": "^8.0.0",
"@types/inquirer": "^0.0.43",
"@types/lru-cache": "^4.1.1",
"@types/node": "^10.12.5",
"@types/ora": "^1.3.4",
"@types/semver": "^6.0.1",
"@types/webpack-env": "^1.13.6",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"@vuepress/plugin-pwa": "^1.0.2",
"chalk": "^3.0.0",
"conventional-changelog": "^3.0.6",
"eslint": "^6.5.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"execa": "^2.0.0",
"globby": "^10.0.1",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"inquirer": "^6.2.0",
"lerna": "^3.4.3",
"minimist": "^1.2.0",
"request-promise-native": "^1.0.5",
"rimraf": "^2.6.2",
"semver": "^7.1.1",
"typescript": "^3.1.6",
"vuepress": "^1.0.2"
}
}