-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 837 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 837 Bytes
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
{
"name": "omini",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon src/server.ts",
"build": "sucrase ./src -d ./dist --transforms typescript,imports",
"test": "jest --no-cache"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"sucrase": "^3.17.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/node": "^14.14.17",
"bunyan": "^1.8.14",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pg": "^8.5.1"
}
}