-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "cra-template-mark",
"version": "1.0.0",
"keywords": [
"react",
"create-react-app",
"template"
],
"description": "The base template for Create React App.",
"repository": {
"type": "git",
"url": "https://github.com/goblin-laboratory/cra-template-mark.git"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"bugs": {
"url": "https://github.com/goblin-laboratory/cra-template-mark/issues"
},
"files": [
"template",
"template.json"
],
"scripts": {
"prepare": "husky install",
"test": "rimraf example && npx create-react-app example --template file:./",
"release": "standard-version && nrm use npm && npm publish && nrm use taobao",
"release:alpha": "standard-version -- --prerelease alpha",
"publish:next": "nrm use npm && npm publish --tag next && nrm use taobao",
"nrm": "nrm use taobao"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"create-react-app": "^5.0.1",
"husky": "^8.0.1",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0"
},
"dependencies": {}
}