-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.56 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
{
"name": "@typecast/core",
"version": "0.0.74",
"description": "",
"scripts": {
"update": "npx npm-update-all",
"gulp": "npx gulp",
"start": "npm run build && cd dist && export NODE_ENV=production && node index.js",
"dev": "npm run build && cd dist && export NODE_ENV=development && node index.js",
"build": "rm -rf dist && tsc && cp -r README.md LICENSE package.json jest.js.json .npmignore .env.* view public locale badges dist",
"lint": "tslint -p tsconfig.json",
"test": "npm run build && cd dist && jest --runInBand --testTimeout=30000 --config jest.js.json && cd ../ && npm run lint",
"test:ts": "jest --runInBand --testTimeout=30000 --config jest.ts.json && jest-coverage-badges output './badges' && npm run lint",
"preversion": "npm test",
"version": "git add -A .",
"postversion": "git push && npm run build && cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romaneckert/typecast-core.git"
},
"keywords": [],
"author": "Roman Eckert",
"license": "MIT",
"bugs": {
"url": "https://github.com/romaneckert/typecast-core/issues"
},
"homepage": "https://github.com/romaneckert/typecast-core#readme",
"devDependencies": {
"@types/compression": "1.0.1",
"@types/cookie-parser": "1.4.2",
"@types/dotenv": "6.1.1",
"@types/express": "4.17.1",
"@types/helmet": "0.0.44",
"@types/jest": "24.0.18",
"@types/jsonwebtoken": "8.3.3",
"@types/node": "12.7.4",
"@types/nodemailer": "6.2.1",
"@types/pug": "2.0.4",
"@types/smtp-server": "3.5.2",
"gulp": "4.0.2",
"gulp-autoprefixer": "7.0.0",
"gulp-sass": "4.0.2",
"gulp-strip-css-comments": "2.0.0",
"jest": "24.9.0",
"jest-coverage-badges": "1.1.2",
"node-sass": "4.12.0",
"prettier": "1.18.2",
"ts-jest": "24.0.2",
"tslint": "5.19.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.5.3"
},
"dependencies": {
"axios": "0.19.0",
"class-validator": "0.10.0",
"compression": "1.7.4",
"cookie-parser": "1.4.4",
"dotenv": "8.1.0",
"express": "4.17.1",
"helmet": "3.20.1",
"jsonwebtoken": "8.5.1",
"mysql": "2.17.1",
"nodemailer": "6.3.0",
"pug": "2.0.4",
"querystring": "0.2.0",
"reflect-metadata": "0.1.13",
"smtp-server": "3.5.0",
"typeorm": "0.2.18"
}
}