-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.7 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
54
55
56
57
{
"name": "nanotrack",
"version": "1.0.1-beta",
"description": "1x1 Nano-Size Spy-Pixel Analytics",
"main": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"test": "jest",
"build": "babel src --out-dir dist && npx tsc && copyfiles --flat src/ui/*.png src/ui/*.ico src/ui/*.html dist/ui",
"build:js": "webpack --mode production",
"dev": "npm run build && node dist/server.js"
},
"keywords": [
"tracking",
"analytics",
"pixel",
"server",
"1x1",
"spy pixel"
],
"author": "Dillon Baird",
"license": "MIT",
"dependencies": {
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-useragent": "^1.0.15",
"fs": "^0.0.1-security",
"geoip-lite": "^1.4.10",
"mongoose": "^8.4.1",
"nocache": "^4.0.0",
"node-fetch": "^3.3.2",
"ws": "^8.17.1"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/express-useragent": "^1.0.5",
"@types/geoip-lite": "^1.4.4",
"@types/ws": "^8.5.10",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"copyfiles": "^2.4.1",
"html-loader": "^5.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.3",
"terser-webpack-plugin": "^5.3.10",
"ts-node": "^10.9.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"webpack-obfuscator": "^3.5.1"
}
}