-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 2.51 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
{
"name": "@formidablejs/framework",
"version": "0.27.1",
"description": "Formidable Framework Core",
"author": "Donald Pakkies",
"license": "MIT",
"main": "lib/index.js",
"types": "types/index.d.ts",
"publisher": "formidable/Package.js",
"bugs": "https://github.com/formidablejs/framework/issues",
"homepage": "https://formidablejs.org",
"repository": "https://github.com/formidablejs/framework",
"files": [
"formidable",
"bin",
"lib",
"types"
],
"bin": {
"internals": "bin/formidablejs/index.js"
},
"scripts": {
"build": "npm run imba:build && sh ./scripts/server-command-replace.sh",
"imba:build": "imbac src --output=lib --platform=node --format=cjs --clean",
"imba:build:temp": "imbac src --output=.temp --platform=node --clean",
"imba:watch": "imbac -w src --output=lib --platform=node --clean",
"ts:build": "tsc",
"ts:watch": "tsc -w",
"test": "jest --roots=test",
"test:e2e": "cd test/e2e && npm run test",
"test:watch": "jest --watchAll --roots=test",
"pre-test": "./scripts/0-package.sh && ./scripts/1-fetch.sh && ./scripts/2-install.sh && ./scripts/3-copy-test-files.sh && ./scripts/4-prepare.sh"
},
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/formbody": "^7.4.0",
"@fastify/multipart": "^8.2.0",
"@fastify/session": "^10.8.0",
"@fastify/static": "^7.0.4",
"@formidablejs/console": "^0.0.22",
"bcrypt": "^5.1.1",
"connect-redis": "^7.1.1",
"detect-port": "^1.5.1",
"dotenv": "^16.3.1",
"express-session": "^1.18.0",
"fastify": "^4.27.0",
"fs-extra": "^11.2.0",
"html-escaper": "^3.0.3",
"inquirer": "^8.2.4",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"knex-paginate": "^3.1.1",
"memorystore": "^1.6.7",
"ms": "^2.1.3",
"nodemon": "^3.0.3",
"pluralize": "^8.0.0",
"redis": "^4.6.12",
"session-file-store": "^1.5.0",
"stacktrace-js": "^2.0.2",
"validatorjs": "^3.22.1"
},
"peerDependencies": {
"@formidablejs/mailer": ">=0.4.0",
"@formidablejs/stubs": ">= 0.3.0",
"imba-shell": ">=0.4.0 <0.5.0"
},
"devDependencies": {
"@formidablejs/mailer": "0.4.0",
"@formidablejs/stubs": "^0.5.1",
"@types/connect-redis": "^0.0.18",
"@types/express-session": "^1.17.5",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.3",
"argon2": "^0.30.3",
"imba": "2.0.0-alpha.215",
"imba-shell": "0.4.0",
"jest": "^29.2.0",
"sqlite3": "^5.1.6",
"typescript": "^4.8.4"
}
}