-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.32 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.32 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
41
42
43
{
"name": "gwanbo-crawler",
"version": "0.0.1",
"main": "dist/index.js",
"repository": "https://github.com/Code-for-Korea/gwanbo-crawler.git",
"author": "Junsu Lee <[email protected]>",
"license": "MIT",
"scripts": {
"start": "dotenv -e .env -- node .",
"start:dev": "dotenv -e .env.dev -- node .",
"serve": "yarn clean && dotenv -e .env -- tsc-watch --onSuccess \"node .\"",
"serve:dev": "yarn clean && dotenv -e .env.dev -- tsc-watch --onSuccess \"node .\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prebuild": "yarn clean",
"build": "tsc",
"clean": "rimraf dist"
},
"dependencies": {
"axios": "^0.21.1",
"dotenv-cli": "^4.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/eslint": "^7.28.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^16.4.3",
"@types/prettier": "^2.3.2",
"@types/tsc-watch": "4.2.0",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"tsc-watch": "4.4.0",
"typescript": "^4.3.5"
}
}