-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.76 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@linkhere/backend",
"version": "0.1.0",
"main": "dist/index.js",
"author": "Max Isom <[email protected]> (https://maxisom.me/)",
"license": "MIT",
"types": "dts/types",
"files": [
"dist",
"dts"
],
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"lint-fix": "eslint 'src/**/*.ts' --fix",
"clean": "rm -rf dist dts",
"test": "npm run lint",
"build": "tsc",
"watch": "tsc --watch",
"prepack": "npm run clean && npm run build",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/bluebird": "^3.5.29",
"@types/cors": "^2.8.6",
"@types/node": "^13.7.7",
"@types/puppeteer": "^2.0.1",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-xo": "^0.29.1",
"eslint-config-xo-typescript": "^0.26.0",
"husky": "^4.2.3",
"typescript": "^3.8.3"
},
"eslintConfig": {
"extends": [
"xo",
"xo-typescript/space"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"new-cap": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-unused-vars-experimental": "error",
"@typescript-eslint/no-inferrable-types": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run build"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"capture-website": "^0.8.1",
"cors": "^2.8.5",
"crypto-random-string": "^3.1.0",
"express": "^4.17.1",
"make-dir": "^3.0.2",
"sequelize": "^5.21.5",
"sqlite3": "^5.0.0",
"typescript-rest": "^3.0.1",
"url-encode-decode": "^1.0.0"
}
}