generated from frutbits/template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "mpl-id-api",
"version": "0.0.1",
"description": "API for MPL Indonesia Season 10",
"keywords": [
"js",
"typescript"
],
"bugs": {
"url": "https://github.com/Waxaranai/mpl-id-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Waxaranai/mpl-id-api.git"
},
"license": "AGPL-3.0",
"author": "Waxaranai <[email protected]>",
"type": "module",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run lint && npm run compile",
"compile": "tsc --build tsconfig.json",
"lint": "eslint . --ignore-path .gitignore --ext .ts",
"lint:fix": "npm run lint -- --fix",
"start": "npm run build && node --experimental-specifier-resolution=node dist",
"start:dev": "npm run clean && npm run compile && node --experimental-specifier-resolution=node --no-warnings dist"
},
"eslintConfig": {
"extends": "@hazmi35/eslint-config/typescript",
"ignorePatterns": "dist/*",
"rules": {
"@typescript-eslint/naming-convention": "off"
}
},
"devDependencies": {
"@hazmi35/eslint-config": "^8.4.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16.6.0",
"npm": ">=7.0.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"express": "^4.18.1",
"got": "^12.3.1",
"moment-timezone": "^0.5.37"
}
}