This repository has been archived by the owner on Apr 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 3.77 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"private": true,
"license": "Apache-2.0",
"author": "Shawn Patrick Rice",
"contributors": [
{
"name": "Christopher Belsole",
"email": "chris@helloeave.com",
"url": "https://github.com/cbelsole"
},
{
"name": "Shawn Patrick Rice",
"email": "rice@shawnrice.org",
"url": "https://github.com/shawnrice"
}
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "NODE_ENV=production yarn run clean && rollup -c && cd packages/example && yarn run build",
"clean": "rm -fR packages/slider/dist; rm -fR packages/field/dist; rm -fR packages/form/dist; rm -fR packages/helpers/dist; rm -fR packages/extra-fields/dist; rm -fR packages/example/dist",
"build:docs": "mv docs/404.html . && rm -fR docs/* && cd packages/example && yarn run build && cp -fR ./dist/ ../../docs && mv ../../404.html ../../docs/",
"postinstall": "yarn run build",
"publish": "lerna publish",
"prepublish": "yarn build",
"dev": "nps dev.all",
"format": "prettier --write '**/*.{json,js,css,md,ts,tsx}'",
"lint": "nps lint.all",
"rollup": "rollup -c",
"test": "jest",
"test:watch": "yarn run test -- --watch"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-0": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.12",
"@types/lodash": "^4.14.123",
"@types/prop-types": "^15.7.1",
"@types/react-dom": "^16.8.4",
"@types/react": "^16.8.16",
"@typescript-eslint/parser": "^1.7.0",
"autoprefixer": "^9.5.1",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"csstype": "^2.6.4",
"dom-testing-library": "^4.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-import-resolver-lerna": "^1.1.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-monorepo": "^0.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint": "^5.16.0",
"husky": "^2.2.0",
"jest-environment-jsdom": "24.8.0",
"jest": "^24.8.0",
"jest-dom": "^3.1.4",
"lerna": "3.13.4",
"lint-staged": "^8.1.6",
"nps-utils": "^1.7.0",
"nps": "^5.9.5",
"prettier": "^1.17.0",
"react-test-renderer": "^16.8.6",
"react-testing-library": "^7.0.0",
"regenerator-runtime": "^0.13.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.21.0",
"rollup-plugin-uglify": "^6.0.2",
"rollup": "^1.11.2",
"typescript": "~3.4.5"
},
"resolutions": {
"@types/react": "^16.8.6",
"@types/react-dom": "^16.8.2",
"event-stream": "4.0.1"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"ie > 9"
]
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx}": [
"yarn run format",
"git add"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}