-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"private": true,
"name": "plume2",
"description": "a lightweight of flux for mobile web",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "BABEL_ENV=production npx jest --verbose --watch",
"coverage": "npx jest --coverage",
"build:plume2": "npm run clean:plume2 && tsc -p packages/plume2/tsconfig.json && tsc -p packages/plume2/tsconfig-es6.json",
"clean:plume2": "rm -rf packages/plume2/es5 && rm -rf packages/plume2/es6"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"notify": true,
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/examples/"
]
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/fs-extra": "^5.0.4",
"@types/jest": "^20.0.4",
"@types/node": "^8.0.14",
"@types/prop-types": "^15.5.1",
"@types/react": "^15.0.38",
"@types/react-dom": "^15.5.1",
"babel-core": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"jest": "^20.0.4",
"lerna": "^2.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"ts-jest": "^20.0.7",
"typescript": "2.9.2",
"prettier": "^1.15.3",
"pretty-quick": "^1.8.0",
"husky": "^1.2.1"
}
}