-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 980 Bytes
/
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
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@types/cheerio": "^0.22.18",
"@types/dotenv": "^8.2.0",
"@types/request": "^2.48.4",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"express": "^4.17.1",
"ibm-watson": "^6.0.2",
"prettier": "^2.0.5",
"request": "^2.88.2"
},
"scripts": {
"build": "tsc",
"dev:server": "ts-node-dev --transpileOnly --ignore-watch node_modules src/server.ts"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
}
}