This repository was archived by the owner on Aug 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.75 KB
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
53
54
{
"name": "ts-koa-quick-start",
"version": "1.0.0",
"license": "MIT",
"pre-commit": [
"test"
],
"scripts": {
"start": "node dist/index.js",
"start:dev": "NODE_ENV=development node dist/index.js",
"build": "npm run test && node_modules/.bin/tsc && webpack --config webpack/webpack.prod.js",
"dev": "webpack --config webpack/webpack.dev.js --watch & node_modules/.bin/tsc -w",
"db:migrate": "sequelize db:migrate --env \"production\"",
"db:migrate:dev": "sequelize db:migrate --env \"development\"",
"db:migrate:test": "sequelize db:migrate --env \"test\"",
"lint-autofix": "node_modules/.bin/tslint -c tslint.json --fix '{src,resources,tests}/**/*.ts'",
"lint": "node_modules/.bin/tslint -c tslint.json 'src/**/*.ts'",
"test": "npm run lint && NODE_ENV=test mocha -r ts-node/register tests/**/*.spec.ts"
},
"devDependencies": {
"@types/bluebird": "3.5.20",
"@types/bluebird-global": "3.5.5",
"@types/chai": "4.1.4",
"@types/koa": "2.0.45",
"@types/koa-bodyparser": "4.2.0",
"@types/koa-generic-session": "1.0.2",
"@types/koa-router": "7.0.28",
"@types/lodash": "4.14.109",
"@types/mocha": "5.2.4",
"@types/node": "10.1.4",
"@types/sequelize": "4.27.20",
"chai": "4.1.2",
"mocha": "5.2.0",
"pre-commit": "1.2.2",
"ts-loader": "4.3.0",
"ts-node": "6.0.5",
"typescript": "2.8.3",
"uglifyjs-webpack-plugin": "1.2.5",
"webpack": "4.10.2",
"webpack-cli": "^2.1.4",
"webpack-merge": "4.1.2"
},
"dependencies": {
"bluebird": "3.5.1",
"koa": "2.5.1",
"koa-bodyparser": "4.2.1",
"koa-generic-session": "2.0.1",
"koa-router": "7.4.0",
"lodash": "4.17.11",
"log4js": "2.7.0",
"sequelize": "4.37.10",
"tslint": "5.10.0"
}
}