forked from interactivethings/catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.13 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
65
66
67
68
69
70
71
72
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"dev": "run-p -l dev:*",
"dev:lib": "rollup -c rollup.config.js --watch",
"dev:doc": "yarn workspace @catalog/docs run dev",
"build": "run-s -n build:*",
"build:lib": "rollup -c rollup.config.js",
"build:standalone": "yarn workspace @catalog/standalone run build",
"build:doc": "yarn workspace @catalog/docs run build",
"test": "run-s -n test:*",
"test:types": "tsc --build",
"test:jest": "jest",
"version:canary": "run-s -n test version:lerna-canary",
"version:lerna-canary": "lerna version prerelease --preid=canary",
"publish:canary": "scripts/publish-canary.sh"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/express": "^4.16.0",
"@types/jest": "^24.0.0",
"@types/loader-utils": "^1.1.3",
"@types/node": "^10.12.1",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/source-map": "^0.5.7",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"babel-plugin-emotion": "^10.0.13",
"depcheck": "^0.6.11",
"eslint": "^5.8.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^24.0.0",
"lerna": "^3.4.3",
"npm-run-all": "^4.1.5",
"release": "^6.0.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.3",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^5.0.0",
"tslib": "^1.9.3",
"typescript": "^3.1.4"
},
"jest": {
"roots": [
"<rootDir>/packages/"
],
"testPathIgnorePatterns": [
"<rootDir>/packages/core/types/",
"<rootDir>/packages/.*/lib/"
]
},
"workspaces": [
"packages/*",
"docs"
],
"resolutions": {
"prop-types": "^15.7.2",
"react-is": "^16.12.0"
}
}