-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.97 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
{
"name": "issuator",
"version": "0.0.0",
"description": "Portal for managing project issues",
"engines": {
"node": "12.x",
"npm": "6.x"
},
"main": "dist/src/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon -r ts-node/register",
"dev:debug": "cross-env NODE_ENV=development nodemon --inspect-brk -r ts-node/register",
"clean:dist": "rimraf dist/**/*",
"compile": "tsc",
"build": "cross-env NODE_ENV=production npm run clean:dist && npm run compile",
"start": "node --optimize_for_size --max_old_space_size=460 --gc_interval=100 ./dist/src",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test:frontend": "cd frontend && node ./node_modules/@angular/cli/bin/ng test && cd ../",
"test": "cross-env NODE_ENV=testing npm run coveralls && npm run test:frontend",
"lint:frontend": "cd frontend && node ./node_modules/@angular/cli/bin/ng lint && cd ../",
"lint:backend": "tslint -p ./tsconfig.json -c ./tslint.json",
"lint": "npm run lint:backend && npm run lint:frontend"
},
"pre-commit": "lint",
"repository": {
"type": "git",
"url": "git+https://github.com/fantkolja/issuator.git"
},
"keywords": [
"project management",
"issue"
],
"author": "Mykola Fant",
"license": "MIT",
"bugs": {
"url": "https://github.com/fantkolja/issuator/issues"
},
"homepage": "https://github.com/fantkolja/issuator#readme",
"devDependencies": {
"@types/express": "^4.16.1",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@types/supertest": "^2.0.7",
"codelyzer": "^5.0.0",
"coveralls": "^3.0.4",
"cross-env": "^5.2.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"pre-commit": "^1.2.2",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.5.1"
},
"dependencies": {
"axios": "^0.19.0",
"express": "^4.17.1"
}
}