-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.55 KB
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
{
"name": "nz-reader",
"version": "0.0.1",
"main": "./dist/server.js",
"author": "D.",
"license": "MIT",
"private": false,
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/joi": "^14.3.3",
"@types/jsonwebtoken": "^8.3.2",
"@types/mongoose": "^5.3.26",
"@types/node": "^11.13.4",
"@types/nodemailer": "^4.6.8",
"@types/reactstrap": "^8.0.1",
"bcrypt": "^3.0.5",
"colors": "^1.3.3",
"concurrently": "^4.1.0",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.1",
"nodemailer": "^6.1.1",
"ts-node": "^8.0.3",
"typescript": "^3.4.3"
},
"scripts": {
"start": "node ./dist/server.js",
"dev": "concurrently --kill-others \"yarn run client:dev\" \"yarn run server:watch\"",
"server:dev": "node --inspect=5858 -r ts-node/register ./src/server.ts",
"client:dev": "cd client && yarn start",
"client:build": "cd client && yarn build",
"client:install": "cd client && yarn",
"server:watch": "nodemon",
"build": "tsc",
"heroku-postbuild": "yarn && yarn run build && yarn run client:install && yarn run client:build",
"test": "${env:NODE_ENV}='production'; & yarn server:dev"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "yarn server:dev",
"ext": "ts"
},
"repository": "https://github.com/danixoon/nz-reader"
}