generated from hatchways/express-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
{
"name": "ts-product-launch",
"version": "1.0.0",
"private": true,
"engines": {
"node": "10.x"
},
"scripts": {
"start": "node ./server/bin/www",
"build": "cd client/ && npm install && npm run build",
"dev": "cross-env NODE_ENV=dev nodemon --exec babel-node ./bin/www",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha ./server/test --require @babel/register --exit --timeout 120000"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"dependencies": {
"aws-sdk": "^2.576.0",
"bcrypt": "^3.0.7",
"bucket": "0.0.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.0.0",
"express": "~4.16.1",
"express-jwt": "^5.3.1",
"formidable": "^1.2.1",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.11",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemon": "^1.19.1",
"socket.io": "^2.3.0",
"stripe": "^7.14.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.5.5",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cross-env": "^6.0.3",
"faker": "^4.1.0",
"mocha": "^6.2.0",
"mockgoose": "^8.0.4",
"prettier": "^1.19.1"
}
}