-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "@amplicode/create-amplicode",
"version": "0.10.7",
"description": "Create amplicode app",
"keywords": ["code", "typescript", "react", "generate"],
"bin": {
"create-amplicode": "dist/index.js"
},
"files": [
"dist/*",
"templates/*"
],
"dependencies": {
"ejs": "^3.1.9",
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/minimist": "^1.2.5",
"@types/node": "^20.11.2",
"copy-webpack-plugin": "^12.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"generate:ra": "npm run build && node ./dist/index.js --appName ra-test --template react-admin --serverUrl localhost:8080 --restBasePath /rest --schema '[{\"entity\":\"owners\",\"screens\":[\"list\",\"edit\"]}]' --targetDir ../test-ra-app",
"test": "echo \"Error: no test specified\" && exit 1"
},
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/Amplicode/amplicode-create-app",
"author": "Amplicode",
"license": "Apache-2.0"
}