-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 3.68 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
{
"name": "itunes-epf-processor",
"version": "1.0.0",
"description": "Nodejs TypeScript project that downloads iTunes EPF feed and processes certain data into a Mongodb server",
"author": "Christiaan Maks <[email protected]>",
"main": "index.ts",
"private": false,
"engines": {
"node": "12.x",
"npm": "6"
},
"scripts": {
"start": "npm run build && cross-env NODE_ENV=production node dist/server/index",
"build": "npm run clean && tsc && npm run build:copy-files && npm run build:copy-testfiles && npm run build:copy-scripts",
"build:copy-testfiles": "copyfiles tests/files/* dist/",
"build:copy-scripts": "copyfiles scripts/deployment/* dist/",
"build:copy-files": "copyfiles countryCodes.json dist/",
"dev": "npm run dev:debug",
"dev:container": "sudo docker-compose run start npm run dev:watch",
"dev:watch": "cross-env DEBUG=true nodemon --exec 'ts-node' --ext ts server/index.ts --start",
"dev:debug": "nodemon server/index.ts --start",
"deploy": "git push heroku master",
"deploy:aws": "git pull && git checkout production && git merge master && npm run build && npm run test:all && git push && git checkout master && git push",
"release": "standard-version --no-verify",
"lint": "tslint --project .",
"clean": "rm -rf dist/",
"test": "sudo docker-compose run start npm run pretest && ava --match='!*{slow}*'",
"test:match": "sudo docker-compose run start npm run pretest && ava",
"test:windows:match": "npm run pretest && ava",
"test:all": "sudo docker-compose run start npm run pretest && ava",
"test:watch": "sudo docker-compose run start npm run pretest && ava --watch",
"pretest": "! grep -ir --exclude-dir=node_modules --exclude-dir=.git --exclude-dir=.vscode --exclude-dir=scripts --exclude=package.json --exclude=buildspec.yml --exclude=appspec.yml 'dist/' .",
"test:coverage": "cross-env NODE_ENV=test nyc ava",
"report-coverage": "nyc report --reporter=html",
"scan:circular-dependencies": "madge --circular --extensions ts ./server"
},
"repository": {
"type": "git",
"url": "https://github.com/Christilut/node-api-boilerplate"
},
"dependencies": {
"@sentry/node": "^5.5.0",
"@types/cheerio": "^0.22.12",
"@types/fs-extra": "5.0.5",
"@types/joi": "14.3.3",
"@types/mongoose": "5.5.9",
"@types/node": "^8.10.51",
"@types/supertest": "2.0.8",
"@types/winston": "^2.4.4",
"@types/zen-observable": "^0.8.0",
"app-module-path": "2.2.0",
"ava": "^1.4.1",
"axios": "^0.19.0",
"bzip2-maybe": "git+https://github.com/rekordcloud/bzip2-maybe.git",
"cheerio": "^1.0.0-rc.3",
"commitizen": "3.0.7",
"copyfiles": "2.1.1",
"coveralls": "3.0.5",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "7.0.0",
"fs-extra": "^7.0.1",
"husky": "1.3.1",
"joi": "14.3.1",
"line-reader": "^0.4.0",
"madge": "3.4.4",
"moment": "^2.24.0",
"mongoose": "5.6.5",
"morgan": "^1.9.1",
"nodemon": "1.19.1",
"nyc": "13.3.0",
"randomatic": "^3.1.1",
"reflect-metadata": "0.1.13",
"standard-version": "5.0.2",
"supertest": "4.0.2",
"tar-stream": "^2.1.0",
"ts-node": "^8.3.0",
"tslint": "5.18.0",
"tslint-config-standard": "^8.0.1",
"typegoose": "5.8.1",
"typescript": "3.5.3",
"winston": "3.2.1",
"winston-cloudwatch": "2.0.5",
"winston-raven-sentry": "^2.0.0"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "! grep -ir --exclude-dir=node_modules --exclude-dir=.git --exclude-dir=dist/ --exclude=package.json '// TEMP' ."
}
}
}