This repository has been archived by the owner on Feb 5, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.07 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
{
"name": "spax",
"version": "1.0.0",
"description": "spax master",
"homepage": "https://spax.js.org/",
"author": "crossjs<[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/spaxjs/spax.git"
},
"keywords": [
"react",
"typescript",
"extensible",
"pluggable",
"progressive",
"boilerplate",
"framework",
"react-app-rewired",
"react-scripts",
"craco",
"material-ui"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.9",
"babel-jest": "^24.9.0",
"babel-preset-react-app": "^9.0.2",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.0.2",
"git-message": "^2.0.2",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-environment-jsdom-fifteen": "^1.0.0",
"lerna": "^3.18.4",
"react": "^16.12.0",
"react-app-polyfill": "^1.0.4",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.1.0",
"tslint-react-hooks": "^2.2.1",
"typescript": "^3.7.2"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"lint": "tslint --project ./ --fix",
"build": "lerna run build --no-private",
"precommit": "git add -A",
"commit": "git-cz",
"publish": "lerna publish",
"start": "jest --no-cache --watch",
"test": "jest --no-cache"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}