This repository has been archived by the owner on Apr 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.16 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
{
"name": "portfolio-server",
"description": "",
"version": "1.0.0",
"author": "Stephen Poole",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"celebrate": "^9.0.2",
"compression": "^1.7.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-rate-limit": "^3.4.0",
"helmet": "^3.15.1",
"joi": "^14.3.1",
"phantom": "^6.0.3",
"request-promise": "^4.2.4",
"uuid": "^3.3.2",
"winston": "3.2.1"
},
"devDependencies": {
"@types/async": "^2.0.50",
"@types/bluebird-global": "^3.5.11",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/express-rate-limit": "^3.3.0",
"@types/helmet": "0.0.42",
"@types/joi": "^14.3.2",
"@types/mocha": "^5.2.6",
"@types/node": "^11.9.5",
"@types/phantom": "^3.2.5",
"@types/request": "^2.48.1",
"@types/request-promise": "^4.1.42",
"@types/uuid": "^3.4.4",
"@types/webpack": "^4.4.24",
"@types/webpack-env": "^1.13.7",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"chai": "^4.2.0",
"chai-dom": "^1.8.1",
"cross-env": "^5.2.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"jsdom": "^13.2.0",
"jsdom-global": "^3.0.2",
"mocha": "^6.0.2",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"source-map": "^0.7.3",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.10",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.2",
"typescript": "^3.3.3333",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-node-externals": "^1.7.2"
},
"engines": {
"node": "10.15.0"
},
"repository": {
"type": "git",
"url": "https://github.com/stephenpoole/portfolio-server.git"
},
"license": "MIT",
"scripts": {
"test": "cross-env NODE_ENV=\"production\" TS_NODE_COMPILER_OPTIONS=\"{\\\"module\\\": \\\"commonjs\\\"}\" nyc mocha test/**/*.spec.ts",
"start": "npm run prod",
"prod": "webpack --mode=production",
"dev": "webpack -w --mode=development",
"run": "node --inspect ./dist/app.js",
"watch": "nodemon ./dist/app.js",
"deploy": "git push production master"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"all": true
}
}