-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2 KB
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
79
80
81
82
83
84
85
86
{
"name": "hapiffold",
"version": "1.0.0",
"description": "System Information Generator",
"main": "index.ts",
"directories": {
"lib": "lib"
},
"engines": {
"npm": "8.1.4",
"node": "v16.13.0"
},
"scripts": {
"seed": "ts-node seeders/index",
"build": "rm -rf dist && tsc --build",
"move": "cp .env dist/.env && node lib/scripts/heroku",
"deploy": "npm run build && npm run move && gh-pages -d dist",
"test": "ts-node lib/scripts/parser.ts",
"dev": "nodemon src/index",
"start": "ts-node src/index",
"parse": "xml2js assets/vpp.xml -ns -o assets/vpp.json && ts-node lib/scripts/parser",
"drop": "rm -rf src",
"mkdir": "mkdir src src/controllers src/models src/services src/utils",
"gen": "npm run parse && npm run drop && npm run mkdir && ts-node lib/scripts/generator"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cartory/stackffold.git"
},
"keywords": [
"typescript",
"javascript",
"webpack",
"dotenv",
"sequelize",
"express"
],
"author": "cartory",
"license": "ISC",
"bugs": {
"url": "https://github.com/cartory/stackffold/issues"
},
"homepage": "https://github.com/cartory/stackffold#readme",
"dependencies": {
"@adminjs/express": "^4.0.1",
"@adminjs/sequelize": "^2.0.0",
"@decorators/express": "^2.6.0",
"adminjs": "^5.3.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"mysql2": "^2.3.0",
"node-latex": "^3.1.0",
"nodemailer": "^6.7.2",
"sequelize": "^6.12.1",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^16.10.9",
"@types/nodemailer": "^6.4.4",
"csv-parser": "^3.0.0",
"fast-xml-parser": "^3.20.3",
"gh-pages": "^3.2.3",
"json2csv": "^5.0.6",
"morgan": "^1.10.0",
"nodemon": "^2.0.12"
},
"nodemonConfig": {
"delay": 1000,
"verbose": false,
"ignore": [
".git",
"dist",
"node_modules"
],
"watch": [
"lib",
"src",
".env",
"tsconfig.json"
]
}
}