-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "prepare-react-app",
"version": "0.0.0-development",
"description": "alternative cli for creating new react projects",
"main": "./dist/index.js",
"bin": {
"react-app": "./dist/index.js"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watchAll",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "/~https://github.com/bartektelec/prepare-react-app.git"
},
"keywords": [
"react",
"cli",
"init",
"prepare"
],
"author": "bartektelec",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/bartektelec/prepare-react-app/issues"
},
"homepage": "/~https://github.com/bartektelec/prepare-react-app#readme",
"dependencies": {
"commander": "^7.0.0",
"fs-extra": "^9.1.0",
"inquirer": "^7.3.3",
"ora": "^5.3.0"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/babel__core": "^7.1.12",
"@types/fs-extra": "^9.0.7",
"@types/inquirer": "^7.3.1",
"@types/mock-fs": "^4.13.0",
"chalk": "^4.1.0",
"jest": "^26.6.3",
"mock-fs": "^4.13.0",
"semantic-release": "^17.3.9",
"ts-jest": "^26.5.1",
"typescript": "^4.1.3"
}
}