-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 KB
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": "fingerprint-proxy",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "sh ./scripts/start.sh",
"build": "webpack --watch=false",
"build:production": "webpack --mode=production --devtool=none",
"build:watch": "webpack --watch=true"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^2.1.4",
"assert": "^2.0.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-csp-header": "^4.0.0",
"express-fingerprint": "^1.2.2",
"mongodb": "^3.6.2",
"nanoid": "^3.1.12",
"nodemon": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-loader": "^8.0.4",
"webpack": "^4.44.2"
},
"devDependencies": {
"@types/mongodb": "^3.5.27",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/fingerprintjs__fingerprintjs": "^2.1.0",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"typescript": "^4.0.3",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2"
}
}