-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.05 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "rapid-react",
"version": "2.0.4",
"description": "A light weight interactive CLI Automation Tool 🛠️ for rapid scaffolding of React apps with Create React App under the hood. ⚛️",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint --fix 'src/**/*.ts'",
"start": "npx nodemon --no-stdin --watch 'src/**/*.ts' --exec npx ts-node src/index.ts",
"prebuild": "rm -rf lib",
"build": "tsc -p . && npx ts-node src/scripts/minify.ts && npx ncp src/assets lib/assets && npm pack --dry-run"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/vinaysharma14/rapid-react.git"
},
"author": "Vinay Sharma <vinaysharma7811@gmail.com> (https://www.linkedin.com/in/vinaysharma-/)",
"license": "MIT",
"bin": {
"rapid-react": "lib/index.js"
},
"keywords": [
"cli-app",
"tool",
"scaffolder",
"javascript",
"typescript",
"react",
"reactjs",
"react-router",
"react-redux",
"react-hooks",
"react-router-dom",
"mobx-react",
"redux-saga",
"redux-logger",
"sass",
"scss",
"css",
"es6"
],
"bugs": {
"url": "https://github.com/vinaysharma14/rapid-react/issues"
},
"homepage": "https://github.com/vinaysharma14/rapid-react#readme",
"dependencies": {
"boxen": "^5.0.0",
"chalk": "^4.1.0",
"figlet": "^1.5.0",
"inquirer": "^7.3.3",
"ora": "^5.1.0",
"package-json": "^6.5.0",
"play-sound": "^1.1.3",
"semver": "^7.3.4",
"semver-diff": "^3.1.1"
},
"devDependencies": {
"@types/figlet": "^1.2.1",
"@types/glob": "^7.1.3",
"@types/inquirer": "^7.3.1",
"@types/minify": "^6.0.0",
"@types/node": "^14.14.10",
"@types/semver": "^7.3.4",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-plugin-import": "^2.22.1",
"glob": "^7.1.6",
"husky": "^4.3.5",
"minify": "^6.0.1",
"ncp": "^2.0.0",
"nodemon": "^2.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
}
}