forked from pie-framework/pie-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.46 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@pie-lib/pie-lib",
"description": "the pie-libs mono repo",
"private": true,
"license": "MIT",
"config": {
"scope": "none"
},
"engines": {
"node": ">=11.2.0"
},
"scripts": {
"static": "./scripts/static",
"test": "./scripts/test",
"dev": "./scripts/dev",
"lint": "scripts/build lint",
"clean": "scripts/build clean",
"release": "scripts/build release deploy",
"release:next": "scripts/build release deploy --next",
"build": "scripts/build build",
"postinstall": "lerna bootstrap",
"prepush": "npm run test",
"prepack": "scripts/build changelog"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "7.2.0",
"@pie-framework/build-helper": "^4.4.4",
"@pie-lib/test-utils": "^0.0.3",
"@pslb/pslb": "^2.1.4",
"@types/enzyme": "^3.9.3",
"@types/fs-extra": "^5.0.5",
"@types/jest": "^24.0.5",
"@types/react": "^16.8.19",
"@zeit/next-css": "^1.0.2-canary.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"chalk": "^2.4.2",
"chokidar": "^3.4.2",
"css-loader": "^2.1.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.12.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"file-loader": "^3.0.1",
"fs-extra": "^7.0.1",
"husky": "^4.2.5",
"jest": "24.1.0",
"jsdom": "^16.4.0",
"lerna": "^3.11.0",
"lint-staged": "^8.1.5",
"lodash": "^4.17.11",
"minimist": "^1.2.0",
"next": "^9.5.3",
"now": "^13.1.3",
"prettier": "^1.15.3",
"pretty-quick": "^1.10.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"regenerator-runtime": "^0.13.1",
"semver": "^5.6.0",
"url-loader": "^1.1.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"yarn": "^1.13.0"
},
"dependencies": {
"@material-ui/codemod": "^1.1.0"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}