-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
71 lines (71 loc) · 2.27 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
{
"name": "fortjs",
"version": "2.10.2",
"description": "A Node.js framework for scalable web applications. Simplify routing, embrace reusable components like walls and shields. Build efficiently with Fort.js",
"main": "dist/npm.export.js",
"types": "dist/ts/index.d.ts",
"repository": "https://github.com/ujjwalguptaofficial/fortjs",
"homepage": "https://github.com/ujjwalguptaofficial/fortjs#readme",
"bugs": {
"url": "https://github.com/ujjwalguptaofficial/fortjs/issues"
},
"displayName": "FortJs",
"keywords": [
"component based",
"MVC",
"node",
"framework",
"typescript",
"es6"
],
"scripts": {
"lint": "eslint src/**/*.ts",
"webpack": "webpack --config src/webpack.config.js",
"build": "npm run lint && npm run webpack",
"build:all": "npm run build && npm run build:prod",
"build:prod": "NODE_ENV=production npm run build && npm pack",
"buildpack": "npm run lint && npm run build:all && npm pack",
"build:test": "npm run build:all && npm pack && npm run test",
"deploy": "npm run build:all && npm run test",
"test": "node tests/test_runner.js",
"prepublishOnly": "npm run deploy",
"benchmark": "cd benchmarks && npm run install:benchmark"
},
"author": "Ujjwal Gupta",
"license": "MIT",
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/content-type": "^1.1.2",
"@types/etag": "^1.8.0",
"@types/fresh": "^0.5.0",
"@types/fs-extra": "^5.0.4",
"@types/jsontoxml": "^1.0.0",
"@types/multiparty": "0.0.31",
"@types/negotiator": "^0.6.1",
"@types/node": "^18.18.0",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^6.0.3",
"eslint": "^9.17.0",
"eslint-plugin-security": "^3.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^2.5.0"
},
"dependencies": {
"busboy": "^1.6.0",
"class-validator": "^0.14.1",
"cron": "^3.1.6",
"etag": "^1.8.1",
"fast-content-type-parse": "^1.1.0",
"fresh": "^0.5.2",
"fs-extra": "^11.2.0",
"mustache": "^4.2.0",
"negotiator": "^1.0.0",
"uniqid": "^5.4.0"
}
}