-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "finnish-translator-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "env $(cat .env) nodemon -L",
"start": "node ./dist/server.js",
"dev:lint:fix": "eslint \"src/**\" --fix",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^13.1.4",
"aws-sdk": "2.675.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"fp-ts": "^2.3.1",
"googleapis": "^46.0.0",
"io-ts": "^2.0.3",
"lodash": "4.17.15"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/jest": "25.1.1",
"@types/lodash": "4.14.152",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-jest": "25.4.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
}
}