-
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.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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": "digitaldataservice",
"version": "1.0.0",
"description": "DigitalDataService is a website for collect and prepare digital data displaying to users",
"main": "index.js",
"engines": {
"node": "8.3.0",
"npm": "5.3.0"
},
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"prod-serv": "node index.js",
"prod-client": "npm run build --prefix client",
"client": "npm run start --prefix client",
"dev": "npm-run-all --parallel server client",
"docker": "npm-run-all prod-client prod-serv"
},
"author": "damiansk",
"license": "MIT",
"nodemonConfig": {
"ignore": [
"client/*"
]
},
"dependencies": {
"base64-img": "^1.0.3",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"jwt-simple": "^0.5.1",
"mongoose": "^4.13.5",
"morgan": "^1.9.0",
"move-file": "^1.0.0",
"multiparty": "^4.1.3",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"passport-local": "^1.0.0",
"pngjs": "^3.3.1",
"three": "^0.89.0",
"three-stl-loader": "^1.0.6"
},
"devDependencies": {
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.2"
}
}