-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
119 lines (119 loc) · 3.74 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "typerx",
"version": "0.2.2",
"description": "A lightweight annotation-based full stack node project",
"keywords": [
"api",
"decorator",
"express",
"rest",
"restful",
"swagger",
"typescript"
],
"homepage": "https://github.com/vellengs/typerx#readme",
"bugs": {
"url": "https://github.com/vellengs/typerx/issues"
},
"license": "MIT",
"author": "vellengs",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vellengs/typerx.git"
},
"scripts": {
"clean": "rimraf dist",
"client": "cd packages/client && npm start",
"server": "cd packages/server && npm start",
"start": "nodemon",
"test": "jest",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"prettify": "pretty-quick",
"watch": "nodemon",
"watch-test": "npm run test -- --watchAll",
"build": "npm run clean && tsc --p tsconfig.json && npm run build-copy",
"build-copy": "ts-node build.copy.ts",
"import": "node node_modules/typerx-server/dist/scripts/data.import.js"
},
"dependencies": {
"hbs": "^4.0.1",
"mongoose": "^5.1.6",
"typerx-server": "^0.3.11"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/bluebird": "^3.5.20",
"@types/compression": "0.0.36",
"@types/connect-mongo": "0.0.35",
"@types/cookie-signature": "^1.0.1",
"@types/cors": "^2.8.4",
"@types/dotenv": "^4.0.2",
"@types/express": "^4.11.1",
"@types/express-flash": "0.0.0",
"@types/hbs": "^4.0.0",
"@types/jasmine": "~2.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^22.2.3",
"@types/jszip": "^3.1.2",
"@types/lodash": "^4.14.108",
"@types/lusca": "^1.5.0",
"@types/memory-cache": "^0.2.0",
"@types/mockjs": "^1.0.0",
"@types/mongoose": "^5.0.18",
"@types/node": "^10.3.4",
"@types/passport": "^0.4.5",
"@types/passport-local": "^1.0.33",
"@types/request": "^2.47.0",
"@types/shelljs": "^0.7.9",
"@types/supertest": "^2.0.4",
"@types/swagger-parser": "^4.0.2",
"@types/winston": "^2.3.9",
"codecov": "^3.0.0",
"concurrently": "^3.5.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"jasmine-ts": "^0.2.1",
"jest": "^22.4.3",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-remap-istanbul": "^0.6.0",
"karma-sauce-launcher": "^1.2.0",
"lint-staged": "^5.0.0",
"mockjs": "^1.0.1-beta3",
"nodemon": "^1.14.12",
"npm-run-all": "^4.1.1",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"protractor": "~5.1.2",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"supertest": "^3.0.0",
"ts-jest": "^22.4.4",
"ts-loader": "^3.5.0",
"ts-node": "~3.2.0",
"tsconfig-paths": "^3.3.1",
"tslint": "~5.7.0",
"tslint-sonarts": "^1.6.0",
"typescript": "~2.6.0",
"webpack-bundle-analyzer": "^2.9.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
}
}