-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "@rhidium/json-editor",
"version": "1.0.2",
"description": "A simple, web-based JSON editor, written in TypeScript.",
"main": "dist/app.js",
"scripts": {
"clean:dist": "rimraf ./dist",
"clean:modules": "rimraf ./node_modules",
"clean": "npm run clean:dist && npm run clean:modules",
"lint": "npx eslint src/**/*.ts",
"lint:fix": "npx eslint --fix src/**/*.ts && npx eslint --fix test/**/*.ts",
"prebuild": "npm run clean:dist",
"build": "tsup",
"start": "node dist/app",
"start:dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"dev": "npm run start:dev",
"pretest": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist",
"src/views"
],
"devDependencies": {
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"handlebars": "^4.7.8",
"rimraf": "^3.0.2",
"ts-node-dev": "^2.0.0",
"tsup": "^7.2.0",
"typescript": "^4.8.4"
},
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.18.2",
"express-handlebars": "^7.1.2",
"express-rate-limit": "^7.1.4"
},
"keywords": [
"json",
"editor",
"typescript",
"express",
"handlebars",
"express-handlebars",
"json-editor",
"config-editor",
"configuration-editor"
]
}