generated from timmyichen/nuxt-express-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 4.12 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "helpahacker",
"version": "1.0.0",
"description": "",
"main": "server/index.ts",
"scripts": {
"tsc": "tsc",
"prod:server": "NODE_ENV=production ts-node --files --transpile-only ./server/index.ts",
"dev:server": "ts-node --files --transpile-only ./server/index.ts",
"start": "npm run prod:server",
"dev": "./node_modules/nodemon/bin/nodemon.js --watch 'server/**/*.ts' --exec 'npm run dev:server'",
"nodemon": "./node_modules/nodemon/bin/nodemon.js",
"next:build": "next build",
"prod:build": "NODE_OPTIONS=--max_old_space_size=1024 next build",
"heroku-postbuild": "npm run prod:build",
"lint:ts": "tslint -c tslint.json '**.ts*'",
"pretty": "prettier --write client/**/*.ts* server/**/*.ts",
"precommit": "lint-staged",
"jest:setup": "node ./server/tests/setup.js",
"jest": "NODE_ENV=test npm run jest:setup && ./node_modules/.bin/jest --detectOpenHandles",
"jest:watch": "NODE_ENV=test npm run jest:setup && ./node_modules/.bin/jest --watch",
"script": "NODE_ENV=production ts-node --files --transpile-only"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/get-port": "^4.2.0",
"@zeit/next-typescript": "^1.1.1",
"babel-plugin-module-resolver": "^3.2.0",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.5.5",
"body-parser": "^1.18.3",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"connect-mongo": "^3.0.0",
"cookie-parser": "^1.4.4",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-async-handler": "^1.1.4",
"express-response-errors": "^1.0.4",
"express-session": "^1.16.2",
"fork-ts-checker-webpack-plugin": "^1.3.7",
"get-port": "^5.0.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.15",
"module-alias": "^2.2.0",
"mongodb": "^3.3.2",
"mongoose": "^5.7.1",
"morgan": "^1.9.1",
"next": "^8.1.0",
"next-cookies": "^1.1.3",
"nodemon": "^1.18.11",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"random-words": "^1.1.0",
"react": "16.8.0",
"react-bootstrap": "^1.0.0-beta.12",
"react-dom": "16.8.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"timeago.js": "^4.0.0-beta.2",
"ts-node": "^8.1.0",
"typescript": "^3.4.4",
"validator": "^11.1.0"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/bluebird": "^3.5.27",
"@types/body-parser": "^1.17.0",
"@types/classnames": "^2.2.9",
"@types/connect-mongo": "0.0.43",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.14",
"@types/faker": "^4.1.5",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.139",
"@types/module-alias": "^2.0.0",
"@types/mongodb": "^3.3.3",
"@types/mongoose": "^5.5.18",
"@types/morgan": "^1.7.35",
"@types/next": "^8.0.3",
"@types/node": "^12.0.10",
"@types/passport": "^1.0.1",
"@types/passport-local": "^1.0.33",
"@types/react": "^16.8.23",
"@types/react-bootstrap": "^0.32.20",
"@types/react-dom": "^16.9.1",
"@types/react-redux": "^7.1.3",
"@types/redux": "^3.6.0",
"@types/redux-devtools-extension": "^2.13.2",
"@types/request": "^2.48.2",
"@types/request-promise": "^4.1.44",
"@types/styled-jsx": "^2.2.8",
"@types/supertest": "^2.0.8",
"@types/validator": "^10.11.3",
"faker": "^4.1.0",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^8.1.5",
"node-typescript": "^0.1.3",
"prettier": "^1.17.0",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"webpack-bundle-analyzer": "^3.3.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run pretty",
"git add"
]
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"_moduleAliases": {
"server": "server",
"client": "client"
},
"engines": {
"node": "10.x",
"npm": ">= 6.0.0"
}
}