forked from jquense/react-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.28 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
{
"private": true,
"engines": {
"yarn": "^1.0.0",
"node": ">=6.0.0"
},
"scripts": {
"lerna": "lerna",
"lint": "lerna run lint",
"test": "lerna run test",
"rw": "lerna exec --scope react-widgets npm run",
"tdd": "npm run rw tdd",
"start": "yarn --cwd ./www start",
"bootstrap": "yarn && lerna run prepublishOnly",
"deploy-docs": "yarn build && yarn --cwd ./www && GIT_USER=jquense yarn --cwd ./www build:deploy",
"build": "lerna run build",
"release": "lerna publish"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.4",
"@babel/preset-modules": "^0.1.1",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"babel-eslint": "10.1.0",
"babel-preset-env-modules": "^1.0.0",
"babel-plugin-macros": "^3.1.0",
"common-tags": "^1.3.1",
"cpy-cli": "^3.1.1",
"eslint": "^7.0.0",
"eslint-config-4catalyzer-typescript": "^1.1.0",
"eslint-config-jason": "^7.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.16.0",
"glob": "^7.1.3",
"lerna": "^3.18.3",
"lodash": "^4.17.11",
"prettier": "^2.0.0",
"rimraf": "^3.0.0",
"typescript": "^3.7.2"
},
"resolutions": {
"tailwindcss": "^3.0.16"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"semi": false
},
"workspaces": {
"packages": [
"packages/*"
]
},
"workspace-sources": {
"react-widgets-moment/*": [
"packages/localizer-moment/./*"
],
"react-widgets/*": [
"packages/react-widgets/src/*"
],
"storybook/*": [
"packages/storybook/stories/*"
],
"www/*": [
"www/src/*"
]
}
}