forked from kshailen/s3admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 905 Bytes
/
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
{
"name": "s3man",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon server/server.js",
"build": "next build",
"start": "NODE_ENV=production node server/server.js",
"heroku-postbuild": "yarn run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"antd": "^3.11.6",
"aws-sdk": "^2.382.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"next": "^7.0.2",
"pg": "^7.8.0",
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"nodemonConfig": {
"watch": [
"server/**/*.js"
]
},
"devDependencies": {
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/next": "^7.0.6",
"@types/node": "^10.12.18",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/styled-jsx": "^2.2.7",
"nodemon": "^1.18.9",
"typescript": "^3.2.2"
}
}