-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "create-remax-app",
"version": "2.0.10",
"description": "Create Remax apps with no build configuration.",
"bin": {
"create-remax-app": "./bin/create-remax-app"
},
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"test": "jest"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,less,md,json}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/remaxjs/create-remax-app.git"
},
"keywords": [
"Remax",
"React",
"CLI"
],
"author": "QC-L",
"license": "MIT",
"bugs": {
"url": "https://github.com/remaxjs/create-remax-app/issues"
},
"files": [
"lib",
"bin",
"templates"
],
"homepage": "https://github.com/remaxjs/create-remax-app#readme",
"dependencies": {
"async": "^3.1.0",
"chalk": "^4.1.0",
"ejs": "3.0.2",
"metalsmith": "^2.3.0",
"prompts": "^2.4.0",
"semver": "^7.3.4",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/async": "^3.2.5",
"@types/ejs": "^3.0.5",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.10",
"@types/prompts": "^2.0.9",
"@types/yargs": "^15.0.11",
"jest": "^26.6.3",
"lint-staged": "^12.4.1",
"prettier": "^2.0.5",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2",
"yorkie": "^2.0.0"
}
}