-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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": "dl_platform",
"version": "0.0.7",
"description": "DL platform",
"engines": {
"node": "10.x"
},
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"build": "cd client/ && npm install && npm run build",
"server": "nodemon server/index.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client/ && npm install && npm run build"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"dependencies": {
"age-to-birth-date": "^1.1.4",
"body-parser": "^1.19.0",
"concurrently": "^5.0.0",
"express": "^4.17.1",
"method-override": "^3.0.0",
"mongoose": "^5.7.1",
"multer": "^1.4.2",
"sharp": "^0.23.2",
"validator": "^11.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/alenvlahovljak/DL_platform.git"
},
"keywords": [
"DL",
"DL_platform",
"Education",
"create-react-app",
"react"
],
"author": "Samir Baltić, Alen Vlahovljak",
"license": "MIT"
}