-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.51 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
{
"private": true,
"author": "Medhat Dawoud <[email protected]>",
"license": "ISC",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"clean": "lerna clean",
"lint": "eslint packages/**/*.{ts,tsx}",
"test": "jest packages/**/*.spec.js",
"build:packages": "lerna run build --scope 'react-change-*'",
"build:examples": "lerna run build --scope '*-example'",
"bump": "lerna version -m 'Bump' --no-git-tag-version --no-push",
"deploy": "lerna publish"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.1.1",
"husky": "^4.2.5",
"jest": "^25.1.0",
"lerna": "^3.19.0",
"prettier": "^1.19.1",
"react-styleguidist": "^9.1.16",
"rollup": "^1.22.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.24.3",
"rollup-plugin-uglify": "^6.0.3",
"typescript": "^3.7.2",
"webpack-dev-server": "3.9.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}