-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "blog-nojs-fingerprint-demo",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"dev": "nodemon --watch src -e js,json,ts --exec ts-node src/index.ts",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore --max-warnings 0 .",
"lint:fix": "yarn lint --fix"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"murmurhash3js": "^3.0.1",
"pg": "^8.7.1",
"tslib": "^2.3.1",
"ua-parser-js": "^0.7.28"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.83",
"@types/express": "^4.17.13",
"@types/murmurhash3js": "^3.0.2",
"@types/node": "^16.9.1",
"@types/pg": "^8.6.1",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.0",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}