forked from percy/percy-storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 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
59
60
61
62
63
64
{
"private": true,
"scripts": {
"build": "vitruvius build --src src --dest lib --ignore-packages \"**/integration-tests/**\"",
"lerna:publish": "lerna publish",
"lint": "eslint . --cache --ignore-pattern '!.*'",
"postinstall": "yarn build --silent",
"prebuild": "rimraf ./packages/*/lib",
"precommit": "lint-staged",
"prelerna:publish": "yarn build --silent",
"storybook": "lerna run --scope=storybook-for-react-integration-tests storybook --stream",
"test": "jest",
"test:integration": "./scripts/run-integration-tests.sh",
"test:watch": "jest --watch --notify"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"chalk": "^2.4.1",
"eslint": "^4.3.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jasmine": "*",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"fs-extra": "^6.0.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lerna": "^2.0.0",
"lint-staged": "^6.0.0",
"mock-fs": "^4.5.0",
"prettier": "^1.6.0",
"rimraf": "^2.5.4",
"vitruvius": "^3.0.0"
},
"jest": {
"roots": [
"<rootDir>/integration-tests/",
"<rootDir>/packages/"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"lint-staged": {
"*.js": [
"eslint --fix --color --ignore-pattern '!.*'",
"git add",
"jest --bail --findRelatedTests --color"
]
},
"workspaces": [
"integration-tests/*",
"packages/*"
]
}