forked from hadarge/yoshi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "yoshi-monorepo",
"scripts": {
"bootstrap": "lerna bootstrap",
"postinstall": "npm run bootstrap",
"test-yoshi": "npm test --prefix ./packages/yoshi",
"test": "lerna run test --concurrency 1",
"e2e": "node scripts/runE2E.js",
"test-configs": "lerna run test --concurrency 1 --scope *config*",
"test-create-yoshi-app": "npm test --prefix ./packages/create-yoshi-app",
"build": "eslint .",
"customPublish": "node scripts/customPublish",
"createVersion": "node scripts/createVersion"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"chalk": "^2.4.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-jest": "^21.17.0",
"execa": "^0.10.0",
"expect": "^23.3.0",
"globby": "^8.0.1",
"husky": "^1.0.0-rc.9",
"lerna": "^2.11.0",
"lint-staged": "^7.2.0",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"mocha-teamcity-reporter": "^2.4.0",
"prettier": "^1.12.1",
"prompts": "^0.1.8",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"tempy": "^0.2.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}