-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
70 lines (70 loc) · 2.18 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.2.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"@babel/plugin-proposal-class-properties": "^7.2.0",
"@babel/plugin-proposal-decorators": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@iceworks/spec": "^1.0.3",
"@babel/eslint-parser": "^7.16.5",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-plugin-transform-jsx-stylesheet": "^1.0.0",
"chalk": "^4.1.0",
"chokidar": "^3.4.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.8.0",
"eslint-config-rax": "^0.0.2",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-react": "7.20.3",
"execa": "^5.1.1",
"glob": "^7.1.6",
"jest": "^24.9.0",
"jest-serializer-ansi": "^1.0.3",
"lerna": "^3.22.1",
"md5": "^2.3.0",
"minimatch": "^3.0.4",
"minimist": "^1.2.5",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.0.3",
"universal-env": "^3.2.2"
},
"scripts": {
"setup": "rm -rf node_modules && yarn install && npm run clean && npm run build",
"lint": "eslint --ext .js --ext .jsx ./",
"lint:fix": "npm run lint -- --fix",
"test": "jest --logHeapUsage --detectOpenHandles --testPathIgnorePatterns=/jsx-compiler/",
"build": "ts-node ./scripts/build.ts",
"clean": "rimraf packages/*/lib",
"check-and-publish": "node ./scripts/check-and-publish",
"ci": "npm run setup && npm run lint && npm run test",
"release": "ts-node ./scripts/release.ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"collectCoverage": true,
"setupFiles": [
"<rootDir>/node_modules/regenerator-runtime/runtime"
]
}
}