-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2 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
55
56
{
"name": "typescript-mean-backend",
"version": "0.0.0",
"description": "Typescript MEAN Backend, MongoDB-Express-Node App for `typescript-mean-seed` git-submodule.",
"main": "dist/index.js",
"files": [
"dist/**/*",
"properties/*.json"
],
"scripts": {
"lint": "tslint \"src/**/*.ts\"",
"clean": "rimraf dist",
"html": "cd ./src && find . \\( -name '*.html' -or -name '*.css' -or -name '*.json' \\) -type f -exec cp --parents {} ../dist \\;",
"tsc": "tsc",
"build": "yarn run clean && yarn run tsc",
"test-spec": "mocha dist/**/*.test.js -R spec --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- \"dist/**/*.test.js\" -R spec --bail",
"test": "yarn run build && yarn run lint && yarn run html && yarn run test-cov",
"start": "tsc && node dist/index.js",
"spec": "mocha --reporter spec --compilers ts:ts-node/register --recursive --grep \"${TEST}\" '**/*.test.ts'",
"nyan": "mocha --reporter nyan --compilers ts:ts-node/register --recursive --grep \"${TEST}\" '**/*.test.ts'",
"tap": "mocha --reporter tap --compilers ts:ts-node/register --recursive --grep \"${TEST}\" '**/*.test.ts'"
},
"author": "Seokjin Seo <codebits.design@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/bcrypt": "^1.0.0",
"@types/winston": "^2.3.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"mongodb": "^2.2.26",
"typescript-mean-models": "^0.0.8",
"winston": "^2.3.1",
"winston-color": "^1.0.0"
},
"devDependencies": {
"@types/body-parser": "0.0.33",
"@types/chai": "^3.4.34",
"@types/chai-http": "0.0.29",
"@types/express": "^4.0.33",
"@types/mocha": "^2.2.32",
"@types/mongodb": "^2.1.41",
"@types/node": "^7.0.14",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.3.0",
"rimraf": "^2.5.4",
"superagent": "^3.5.2",
"ts-node": "^3.0.2",
"tslint": "^5.1.0",
"typescript": "^2.3.0",
"typings": "^2.1.1"
}
}