-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 964 Bytes
/
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
{
"name": "wifipersontracker",
"version": "0.1.0",
"description": "Rest-based backend API that serves data about clients in a specific room who are connected to the wifi",
"main": "dist/app.js",
"engines": {
"node": "12.x",
"npm": "6.x"
},
"scripts": {
"clean": "rm -r ./dist",
"build": "tsc && npm run minify",
"test": "nodemon src/app.ts",
"start": "node dist/app.js",
"minify": "uglifyjs-folder ./dist -e -x .js -o ./dist"
},
"repository": {
"type": "git",
"url": "github.com/Taha-cmd/WifiPersonTracker"
},
"author": "Taha",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"uuidv4": "^6.2.6"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/express-fileupload": "^1.1.6",
"@types/node": "^14.14.22",
"nodemon": "^2.0.6",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"uglifyjs-folder": "^2.0.0"
}
}