-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.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
{
"name": "@supercharge/framework",
"description": "Supercharge Node.js framework",
"version": "1.0.0-beta9",
"author": "Marcus Pöhls <marcus@superchargejs.com>",
"type": "module",
"bugs": {
"url": "https://github.com/supercharge/framework/issues"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~4.0.1",
"@supercharge/tsconfig": "~7.0.0",
"@types/node": "~20.10.5",
"eslint": "~8.56.0",
"lerna": "~8.0.1",
"nx": "17.1.2"
},
"engines": {
"node": ">=22"
},
"homepage": "https://superchargejs.com",
"keywords": [
"supercharge",
"superchargejs",
"node",
"node.js",
"framework",
"javascript"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/framework.git"
},
"scripts": {
"build": "lerna run build",
"clean": "lerna clean --yes",
"dev": "lerna run dev",
"fresh": "npm run clean && npm install",
"lint": "lerna run lint",
"publish": "npm run release",
"release": "npm run build && lerna publish --force-publish",
"test": "lerna run test",
"test:nocache": "npm test -- --skip-nx-cache",
"watch": "npm run dev"
},
"workspaces": [
"packages/*"
]
}