-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
129 lines (129 loc) · 3.25 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
126
127
128
129
{
"name": "tux",
"private": true,
"license": "MIT",
"scripts": {
"start": "cd examples/admin && npm start",
"now-build": "cd examples/admin && npm run build -- --admin",
"now-start": "cd examples/admin && npm run serve",
"lint": "./tasks/lint-project.sh",
"check-types": "TS_FAIL_ON_ERROR=true lerna run prepublish --silent",
"lerna": "lerna",
"bootstrap": "lerna bootstrap --hoist",
"precommit": "lint-staged",
"pretty": "prettier --write -- \"**/*.{ts,tsx,css,js}\"",
"watch": "lerna run watch --parallel",
"test": "lerna run test"
},
"dependencies": {
"core-js": "2.4.1",
"moment": "^2.17.1",
"prop-types": "~15.5.8",
"react": "^16.0.0",
"react-chain": "^0.5.0",
"react-day-picker": "^6.2.1",
"react-document": "^0.7.0",
"react-dom": "^16.0.0",
"react-icons": "^2.2.7",
"react-portal": "^3.1.0"
},
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/classnames": "0.0.32",
"@types/deepmerge": "1.3.1",
"@types/express": "^4.0.35",
"@types/fs-extra": "^4.0.6",
"@types/jest": "^18.1.1",
"@types/lodash": "^4.14.61",
"@types/material-ui": "^0.16.48",
"@types/mz": "0.0.30",
"@types/node": "^7.0.4",
"@types/prop-types": "^15.5.1",
"@types/ramda": "0.0.5",
"@types/react": "^16.0.3",
"@types/react-dom": "^16.0.3",
"@types/react-helmet": "^5.0.3",
"@types/react-icons": "^2.2.1",
"@types/react-portal": "^3.0.2",
"@types/react-transition-group": "^2.0.4",
"@types/semver": "^5.3.31",
"@types/webpack": "^3.8.1",
"@types/webpack-chain": "^3.0.0",
"@types/yargs": "^6.6.0",
"babel-jest": "^18.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cz-lerna-changelog": "^1.2.1",
"del": "^2.2.2",
"gulp": "gulpjs/gulp#4.0",
"gulp-babel": "^6.1.2",
"gulp-cli": "^1.2.2",
"gulp-clone": "^1.0.0",
"gulp-sourcemaps": "^2.4.1",
"gulp-typescript": "^3.2.1",
"husky": "^0.14.3",
"jest": "^18.1.0",
"lerna": "^2.5.1",
"lint-staged": "^4.0.3",
"merge2": "^1.0.3",
"prettier": "^1.8.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^16.0.0-beta.5",
"run-sequence": "^1.2.2",
"styled-jsx": "^0.5.4",
"tslint": "^5.0.0",
"tslint-config-prettier": "^1.5.0",
"tslint-react": "^3.2.0",
"typescript": "^2.4.2",
"webpack": "^3.1.0",
"yargs": "^6.6.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
],
"packages/*/{,src/**/}*.js": [
"prettier --write",
"git add"
],
"*.css": [
"prettier --write",
"git add"
]
},
"babel": {
"env": {
"test": {
"plugins": [
"styled-jsx/babel",
[
"transform-runtime",
{
"helpers": false,
"polyfill": false,
"regenerator": true
}
]
],
"presets": [
"react",
"es2015"
]
}
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"workspaces": [
"utilities/*",
"src/*",
"addons/*",
"adapters/*",
"examples/*"
]
}