forked from atulmy/fullstack-javascript-architecture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.2 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
{
"name": "api",
"version": "1.0.0",
"description": "API application",
"main": "index.js",
"scripts": {
"seed": "babel-node src/setup/server/seeder.js",
"setup": "npm install && npm run seed",
"start": "nodemon src/index.js --exec babel-node",
"start:prod": "npm run build:prod && npm run start:server",
"build:prod": "babel src -s -D -d build",
"start:server": "node build/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "0.18.0",
"bcrypt": "3.0.2",
"body-parser": "1.18.3",
"cors": "2.8.5",
"date-fns": "1.29.0",
"dotenv": "6.1.0",
"express": "4.16.4",
"i18n-js": "3.1.0",
"ip": "1.1.5",
"jsonwebtoken": "8.4.0",
"lodash": "4.17.11",
"moment": "2.22.2",
"mongoose": "5.3.13",
"morgan": "1.9.1",
"multer": "1.4.1",
"nodemailer": "4.7.0",
"prop-types": "15.6.2",
"react": "16.6.3",
"react-dom": "16.6.3",
"sharp": "0.21.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"nodemon": "1.18.7"
}
}