forked from percy/react-percy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.95 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.95 KB
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
{
"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",
"test": "jest",
"test:integration": "./scripts/run-integration-tests.sh",
"test:watch": "jest --watch --notify"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.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.0.1",
"eslint": "^4.3.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.27.2",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"fs-extra": "^2.1.2",
"husky": "^0.13.2",
"jest": "^20.0.4",
"lerna": "^2.0.0",
"lint-staged": "^3.3.1",
"prettier": "^1.5.3",
"raf": "^3.4.0",
"rimraf": "^2.5.4",
"tar.gz": "^1.0.5",
"vitruvius": "^3.0.0"
},
"jest": {
"roots": [
"<rootDir>/integration-tests/",
"<rootDir>/packages/"
],
"setupFiles": [
"raf/polyfill"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/integration-tests/create-react-app",
"<rootDir>/packages/react-percy-webpack/src/entry/__tests__/test-project/"
]
},
"lint-staged": {
"*.js": [
"eslint --fix --color --ignore-pattern '!.*'",
"git add",
"jest --bail --findRelatedTests --color"
]
},
"workspaces": [
"integration-tests/*",
"packages/*"
]
}