-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 KB
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
{
"private": true,
"workspaces": [
"packages/@react-cli-ui/*"
],
"scripts": {
"test": "npx jest",
"lint": "npx eslint --ext .js,.jsx,.ts,.tsx --fix ./",
"release": "node scripts/release.js",
"version": "node scripts/genChangelog.js",
"update:version": "lerna version --no-push",
"new-version": "lerna version --conventional-commits --yes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eternal-system/react-cli.git"
},
"keywords": [
"react",
"cli"
],
"author": "eternal-system",
"license": "MIT",
"bugs": {
"url": "https://github.com/eternal-system/react-cli/issues"
},
"homepage": "https://github.com/eternal-system/react-cli#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^4.0.1",
"execa": "^4.0.3",
"inquirer": "^7.3.3",
"jest": "^26.0.1",
"lerna": "^3.22.0",
"lerna-changelog": "^0.8.3",
"minimist": "^1.2.5",
"semver": "^7.3.2",
"typescript": "^3.9.5",
"webpack": "^4.43.0"
}
}