-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.5 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
50
51
52
{
"name": "codex",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "ts-node ./bin/www",
"start-dev": "nodemon",
"migration": "sequelize db:migrate",
"undo-migration": "sequelize db:migrate:undo:all",
"seed": "sequelize db:seed:all",
"undo-seed": "sequelize db:seed:undo:all",
"fmt": "tslint -p . --fix && prettier 'server/**/*.{ts,json}' --write",
"test": "mocha --reporter spec --compilers ts:ts-node/register server/**/*.test.ts"
},
"dependencies": {
"@types/bluebird": "^3.5.26",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/morgan": "^1.7.35",
"@types/node": "^11.13.4",
"@types/sequelize": "^4.27.46",
"@types/swagger-jsdoc": "^0.0.2",
"@types/validator": "^10.11.0",
"chai": "^4.2.0",
"codechain-primitives": "^1.0.0",
"codechain-sdk": "^1.2.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"mocha": "^7.1.1",
"morgan": "^1.9.1",
"pg": "^7.7.1",
"pg-hstore": "^2.3.2",
"request": "^2.88.0",
"rotating-file-stream": "^1.3.9",
"sequelize": "^4.44.3",
"sequelize-typescript": "^0.6.9",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.2",
"ts-node": "^7.0.1",
"tsc": "^1.20150623.0",
"typescript": "^3.2.1"
},
"devDependencies": {
"nodemon": "^1.18.7",
"prettier": "1.14.2",
"sequelize-cli": "^5.4.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0"
}
}