-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 917 Bytes
/
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
{
"name": "reactxp-cli",
"version": "0.0.1",
"description": "A CLI for building ReactXP projects",
"repository": "/~https://github.com/madhavarshney/reactxp-cli",
"author": "Madhav Varshney <madhavarshney@gmail.com> (/~https://github.com/madhavarshney/)",
"license": "MIT",
"main": "lib/index.js",
"bin": {
"reactxp": "./lib/cli.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint -p . -t codeFrame",
"cli": "ts-node ./src/cli.ts",
"test": "yarn run build && yarn run lint"
},
"dependencies": {
"chalk": "^3.0.0",
"figlet": "^1.2.4",
"prompts": "^2.3.0",
"semver": "^6.3.0",
"yargs": "^15.0.2",
"yeoman-environment": "^2.6.0"
},
"devDependencies": {
"@types/node": "^12.12.7",
"@types/semver": "^6.2.0",
"@types/yargs": "^13.0.3",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"typescript": "^3.7.3"
}
}