-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.73 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "fundamentals-lab2",
"version": "1.0.0",
"main": "index.ts",
"repository": "https://github.com/gustafguner/fundamentals-lab2.git",
"author": "Gustaf Gunér <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"run": "ts-node src/index.ts",
"watch": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/index.ts",
"lint": "tslint \"src/**/*.{ts,tsx}\""
},
"dependencies": {
"await-to-js": "^2.1.1",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"glob": "^7.1.3",
"mongoose": "^5.4.9",
"morgan": "^1.9.1",
"nodegit": "^0.24.0",
"octonode": "^0.9.5",
"rimraf": "^2.6.3",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.1",
"@types/glob": "^7.1.1",
"@types/jest": "^23.3.13",
"@types/mongoose": "^5.3.12",
"@types/morgan": "^1.7.35",
"@types/nodegit": "^0.24.0",
"@types/rimraf": "^2.0.2",
"@types/shelljs": "^0.8.2",
"babel-jest": "^24.0.0",
"jest": "^24.0.0",
"ts-jest": "^23.10.5",
"husky": "^1.3.1",
"lint-staged": "^8.1.1",
"nodemon": "^1.18.9",
"prettier": "^1.16.3",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.2.4"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"apidoc": {
"title": "CI Server",
"name" : "Continuous Integration Server"
}
}