-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.57 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
{
"private": true,
"name": "c4k-stastics-crawler",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "https://github.com/Code-for-Korea/stastics.crawler.git",
"author": "Junsu Lee <[email protected]>",
"license": "MIT",
"scripts": {
"start": "yarn start:prod",
"start:prod": "cross-env NODE_ENV=prod node .",
"start:stage": "cross-env NODE_ENV=stage node .",
"start:dev": "cross-env NODE_ENV=dev node .",
"preserve:dev": "yarn clean",
"preserve:prod": "yarn clean",
"preserve:stage": "yarn clean",
"serve": "yarn serve:dev",
"serve:dev": "cross-env NODE_ENV=dev tsc-watch --onSuccess \"node .\"",
"serve:prod": "cross-env NODE_ENV=prod tsc-watch --onSuccess \"node .\"",
"serve:stage": "cross-env NODE_ENV=stage tsc-watch --onSuccess \"node .\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prebuild": "yarn clean",
"prebuild:docker": "yarn clean",
"build": "tsc",
"build:docker": "docker build ",
"clean": "rm -rf dist/"
},
"dependencies": {
"axios": "^0.21.1",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@types/eslint": "^7.2.5",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^14.14.9",
"@types/prettier": "^2.1.5",
"@types/tsc-watch": "4.2.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.2.0",
"tsc-watch": "4.1.0",
"typescript": "^4.1.2"
}
}