forked from arwes/arwes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.81 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
{
"name": "workspace",
"version": "1.0.0",
"private": true,
"scripts": {
"postinstall": "npm run bootstrap && npm run compile",
"bootstrap": "lerna bootstrap",
"compile": "sh compile.sh",
"lint": "npm run lint-js && npm run lint-md",
"lint-js": "eslint .",
"lint-js-fix": "eslint . --fix",
"lint-md": "markdownlint .",
"lint-md-fix": "markdownlint . --fix",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage",
"test-list": "jest --listTests",
"ci": "npm run bootstrap && npm run compile && npm run lint && npm test",
"playground-build": "NODE_ENV=production webpack --config ./playground/playground.webpack.config.js",
"playground-watch": "webpack-dev-server --config ./playground/playground.webpack.config.js",
"release": "npm run ci && lerna publish",
"changelog": "auto-changelog --output ./docs/CHANGELOG.md --commit-limit false",
"contributors-add": "all-contributors add",
"contributors-generate": "all-contributors generate"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run ci",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.11.2",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/react": "^11.0.2",
"all-contributors-cli": "^6.17.2",
"animejs": "^3.2.0",
"auto-changelog": "^2.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"documentation": "^13.0.2",
"eslint": "^7.8.1",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-standard": "^4.0.1",
"glob": "^7.1.6",
"howler": "^2.2.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lerna": "^3.22.1",
"markdownlint": "^0.20.4",
"markdownlint-cli": "^0.23.2",
"navigo": "^7.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-jss": "^10.4.0",
"redux": "^4.0.5",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}