-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
104 lines (104 loc) · 3.24 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "citizen",
"version": "0.6.0",
"private": true,
"bin": {
"citizen": "bin/citizen"
},
"type": "commonjs",
"scripts": {
"start": "node ./bin/citizen server",
"dev": "nodemon ./bin/citizen server",
"lint": "eslint .",
"test:unit": "mocha --exit {lib,routes,storages,stores}/**/**/*.spec.js",
"test:integration": "mocha --exit -t 15000 --require test/download-terraform.js test/**/*.spec.js",
"test": "npm run test:unit && npm run test:integration",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "npm run build:linux && npm run build:macos && npm run build:windows",
"build:linux": "pkg . --compress GZip --targets node16-linux-x64 -o dist/citizen-linux-x64",
"build:macos": "pkg . --compress GZip --targets node16-macos-x64,node16-macos-arm64 -o dist/citizen-macos",
"build:windows": "pkg . --compress GZip --targets node16-win-x64 -o dist/citizen-win-x64.exe",
"migrate:sqlite": "prisma migrate dev --name init --schema stores/sqlite/sqlite.prisma",
"migrate:mongodb": "prisma db push --schema stores/mongodb/mongodb.prisma",
"migrate:mysql": "prisma migrate dev --name init --schema stores/mysql/mysql.prisma",
"preclient": "rimraf stores/sqlite/client stores/mongodb/client",
"client": "npm run client:sqlite && npm run client:mongodb && npm run client:mysql",
"client:sqlite": "prisma generate --schema stores/sqlite/sqlite.prisma",
"client:mongodb": "prisma generate --schema stores/mongodb/mongodb.prisma",
"client:mysql": "prisma generate --schema stores/mysql/mysql.prisma"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.421.0",
"@evops/hcl-terraform-parser": "^1.0.0",
"@google-cloud/storage": "^7.1.0",
"@prisma/client": "^5.3.1",
"body-parser": "^1.20.2",
"chalk": "^4.1.2",
"commander": "^10.0.0",
"cors": "2.8.5",
"debug": "^4.3.2",
"express": "^4.18.2",
"form-data": "^4.0.0",
"fs-extra": "^11.1.1",
"globby": "^11.1.0",
"got": "^11.8.3",
"helmet": "^7.0.0",
"jten": "^0.2.0",
"lodash": "^4.17.20",
"mkdirp": "^3.0.1",
"morgan": "^1.10.0",
"multiparty": "^4.2.2",
"ora": "^5.4.1",
"pino": "^8.15.3",
"recursive-readdir": "^2.2.3",
"semver": "^7.5.4",
"tar": "^6.2.0",
"tmp": "0.2.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"adm-zip": "^0.5.10",
"aws-sdk-client-mock": "^3.0.0",
"chai": "^4.4.1",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-prettier": "^5.0.0",
"get-port": "^5.1.1",
"mocha": "^10.2.0",
"ngrok": "^4.3.3",
"nock": "^13.3.3",
"nodemon": "^3.0.1",
"pino-pretty": "^10.2.0",
"pkg": "^5.8.1",
"prettier": "^3.0.3",
"prisma": "^5.3.1",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"unzipper": "^0.10.14"
},
"pkg": {
"assets": [
"views/**/*",
"stores/**/*.prisma",
"stores/**/migrations/**/*"
]
},
"citizen": {
"terraformVersions": [
"0.12.31",
"0.13.7",
"0.14.11",
"0.15.5",
"1.0.11",
"1.1.9",
"1.2.9",
"1.3.9",
"1.4.6",
"1.5.4"
]
}
}