-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 963 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 963 Bytes
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
{
"name": "sniper-framework",
"version": "0.0.0",
"description": "Sniper is a scope,event,system based framework",
"main": "server.js",
"scripts": {
"build": "npx typescript-module-alias-build ./index.ts",
"start": "node dist/index.js",
"dev": "nodemon --exec typescript-module-alias ./index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GreyDevSergal/sniper.git"
},
"author": "GreyDev",
"license": "ISC",
"bugs": {
"url": "https://github.com/GreyDevSergal/sniper/issues"
},
"homepage": "https://github.com/GreyDevSergal/sniper#readme",
"devDependencies": {
"@types/node": "^18.11.5",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"concurrently": "^7.5.0",
"eslint": "^8.26.0",
"nodemon": "^2.0.20",
"typescript": "^4.8.4",
"typescript-module-alias": "^2.2.9"
},
"dependencies": {
"dotenv": "^16.0.3"
}
}