-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
103 lines (103 loc) · 3.5 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
{
"name": "airy-maleojs",
"description": "Un-opinionated Universal Rendering Javascript Framework",
"author": "Airy Engineering <[email protected]>",
"license": "MIT",
"private": true,
"homepage": "https://github.com/airyrooms/maleo.js#README",
"repository": {
"type": "git",
"url": "git+https://github.com/airyrooms/maleo.js.git"
},
"bugs": {
"url": "https://github.com/airyrooms/maleo.js/issues"
},
"keywords": [
"framework",
"javascript",
"universal",
"rendering",
"react",
"webpack"
],
"workspaces": [
"packages/**"
],
"typeScriptVersion": "3.1.1",
"engines": {
"node": ">=10.11.0",
"npm": ">=6.4.1",
"yarn": ">=1.10.1"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"commit": "git-cz",
"fix:bin": "yarn build && yarn link && yarn && yarn unlink",
"build": "lerna --stream --parallel --no-bail run build",
"watch": "lerna --stream --parallel --no-bail run watch",
"clean:lib": "find packages -name lib -exec rm -rf {} +",
"clean": "yarn lerna clean -y && rm -rf @types node_modules && yarn clean:lib",
"ts:lint": "tslint -c tslint.json 'packages/**/**.ts' --exclude \"node_modules/**/*.{j,t}s\" --exclude \"**/node_modules/**/*.{j,t}s\"",
"lint": "yarn ts:lint",
"pretty:fix": "prettier --config-precedence file-override --config .prettierrc --write 'packages/**/**+(.jsx|.tsx|.js|.ts)'",
"test": "jest --config ./setup-test/jest.config.js --coverage",
"test:cov": "jest --config ./setup-test/jest.config.js --coverage --coverageReporters=text-lcov | coveralls",
"build:test": "yarn build && yarn test",
"publish:prepublish": "lerna run prepublish",
"publish:version-canary": "lerna version prerelease --preid canary --message \"chore(release): publish canary %s [skip ci]\" --yes",
"publish:canary": "lerna publish from-package --no-git-reset --canary --dist-tag canary --yes",
"publish:version-stable": "lerna version --message \"chore(release): publish stable %s\" --git-remote upstream",
"publish:stable": "lerna publish from-package --no-git-reset --yes"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./commitzen.config.js"
}
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"@types/express": "^4.16.0",
"@types/helmet": "^0.0.43",
"@types/node": "^10.12.0",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/react-loadable": "^5.4.1",
"@types/react-router": "^5.0.0",
"@types/react-router-dom": "^4.3.3",
"@types/tapable": "^1.0.4",
"@types/webpack": "^4.4.14",
"@types/webpack-env": "^1.13.9",
"babel-jest": "^23.6.0",
"commitizen": "^3.0.5",
"coveralls": "^3.0.2",
"cz-customizable": "^5.5.3",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lerna": "^3.13.1",
"node-notifier": "^5.2.1",
"nodemon": "^1.18.4",
"prettier": "^1.14.3",
"pretty-quick": "^1.10.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^3.6.0",
"typescript": "^3.1.3"
}
}