-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "sql-tnt",
"version": "1.0.0",
"description": "SQL(Sequelize) + TNT(Typescript Node Template)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"watch": "tsc -w",
"build": "tsc",
"docker:build": "docker build -t sqltnt .",
"docker:sql": "docker run -d -p 1433:1433 sqltnt -- ./entry.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kentonbmax/SQL-TNT.git"
},
"keywords": [
"Sequelize",
"sql",
"postresql",
"typescript",
"node"
],
"author": "Kenton Bocock",
"license": "MIT",
"bugs": {
"url": "https://github.com/kentonbmax/SQL-TNT/issues"
},
"homepage": "https://github.com/kentonbmax/SQL-TNT#readme",
"devDependencies": {
"@types/node": "^10.9.1",
"@types/sequelize": "^4.27.25",
"dotenv": "^4.0.0",
"typescript": "^2.8.4"
},
"dependencies": {
"express": "^4.15.3",
"sequelize": "^6.13.0",
"tedious": "^14.0.0"
}
}