-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "admin-side",
"version": "1.0.2",
"description": "admin-side is a powerful Node.js module that allows you to easily build your web admin panel.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rm -rdf dist && npx tsc && cp src/templates dist/templates -r",
"test": "node test/index.js",
"start": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abdooo9/admin-side.git"
},
"keywords": [
"admin",
"web",
"admin-side",
"panel"
],
"author": "abdooo9",
"license": "MIT",
"bugs": {
"url": "https://github.com/abdooo9/admin-side/issues"
},
"homepage": "https://github.com/abdooo9/admin-side#readme",
"devDependencies": {
"@types/ejs": "^3.1.1",
"@types/node": "^18.11.18",
"express": "^4.18.2",
"typescript": "^4.9.4"
},
"dependencies": {
"ejs": "^3.1.8"
}
}