-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1003 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
36
37
38
39
40
41
{
"name": "simulacrum",
"version": "1.0.0",
"description": "Tired of spinning up new react apps for every project you make? Simulacrum will auto build routes, pages based on your project use case!",
"main": "dist/index.js",
"author": "Victor Doyle",
"keywords": [
"build-tools",
"zero-configuration",
"react",
"template"
],
"bin": {
"simulate": "./dist/cli.js"
},
"scripts": {
"build": "npm run prepare && npm run copy-templates",
"prepare": "tsc",
"copy-templates": "node copy-templates.js",
"postinstall": "npm run copy-templates"
},
"files": [
"dist",
"src/templates"
],
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.1",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.5"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.5",
"@types/node": "^18.11.9",
"typescript": "^4.9.3",
"jest": "^29.3.1",
"@types/jest": "^29.2.3",
"ts-jest": "^29.0.3"
}
}