-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.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
{
"name": "nodefony-core",
"version": "10.0.0-alpha.1",
"description": "Core Nodefony Framework",
"type": "module",
"types": "dist/types/index.d.ts",
"private": true,
"engines": {
"node": ">=18"
},
"keywords": [
"nodefony",
"node-js",
"javascript"
],
"scripts": {
"nodefony": "nodefony",
"start": "nodefony",
"preinstall": "npm --prefix ./src/nodefony install && npm --prefix ./src/packages install && npm --prefix ./src/modules/test install",
"prebuild": "rimraf dist tmp && mkdirp tmp dist && npm run --prefix ./src/nodefony build && npm run --prefix ./src/packages build && npm run --prefix ./src/modules/test build",
"build": "npm run rollup",
"rollup": "rollup --config rollup.config.ts --configPlugin typescript",
"test": "npm run --prefix ./src/nodefony test && npm --prefix ./src/packages test",
"dev": "npm run rollup -- --watch",
"certificates": "bash bin/generateCertificates.sh"
},
"workspaces": [
"src/nodefony",
"src/packages/@nodefony/*"
],
"dependencies": {
"@nodefony/test": "file:src/modules/test",
"nodefony": "file:src/nodefony",
"pm2": "5.4.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-replace": "6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "12.1.2",
"@types/node": "22.10.5",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"mkdirp": "3.0.1",
"nodemon": "3.1.9",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"rollup": "4.30.1",
"rollup-plugin-copy": "3.5.0",
"rollup-sourcemap-path-transform": "1.1.0",
"tslib": "2.8.1",
"typescript": "5.7.2"
},
"repository": {
"type": "git",
"url": "git://github.com/nodefony/nodefony-core.git"
},
"resolutions": {},
"license": "CECILL-B",
"licenses": [
{
"type": "CECILL-B",
"url": "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html"
}
],
"author": "Christophe CAMENSULI <[email protected]>",
"readmeFilename": "README.md"
}