-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "puppr",
"version": "1.0.0",
"description": "Where human meets puppy",
"main": "index.js",
"engines": {
"node": "14.x"
},
"scripts": {
"test": "jest",
"start": "node index",
"server": "nodemon index.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server \" \"npm run client\"",
"heroku-postbuild": "npm install --prefix client && npm run build --prefix client"
},
"author": "Tim Forrest",
"license": "ISC",
"dependencies": {
"@material-ui/icons": "^4.11.2",
"aws-sdk": "^2.817.0",
"body-parser": "^1.19.0",
"clsx": "^1.1.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"jwks-rsa": "^1.12.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-sass": "^4.14.1",
"pg": "^8.5.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"concurrently": "^5.3.0",
"faker": "^5.1.0",
"form-data": "^3.0.0",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.6",
"objects-to-csv": "^1.3.6",
"puppeteer": "^5.5.0"
}
}