-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.46 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "cd dist && node index.js",
"start:watch": "cd dist && nodemon index.js",
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build:node": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"build:emotions": "cd ../emotions && cpy bin/emotions ../server/dist/ && cpy --parents lib/ ../server/dist/",
"build": "cross-env NODE_ENV=production npm-run-all --parallel build:*",
"postbuild": "cd dist && mkdir downloads",
"prewatch": "npm run clean",
"watch:node": "webpack --config webpack.config.js -w",
"watch:emotions": "cd ../emotions && cpy bin/emotions ../server/dist/ && cpy --parents lib/ ../server/dist/",
"watch": "cross-env NODE_ENV=development npm-run-all --parallel watch:*",
"dist": "npm run build && cd ../server/dist && bestzip server.zip .",
"test": "eslint src/**/*.ts src/**/*.js"
},
"author": {
"name": "Andrea Esposito",
"email": "a.esposito39@studenti.uniba.it",
"url": "https://espositoandrea.github.io/"
},
"license": "GPL-3.0-or-later",
"dependencies": {},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/mongodb": "^3.5.9",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"awesome-typescript-loader": "^5.2.1",
"bestzip": "^2.1.5",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"copy-webpack-plugin": "^5.1.1",
"cors": "^2.8.5",
"cpy-cli": "^3.1.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.2",
"dotenv": "^8.2.0",
"ejs": "^3.0.2",
"ejs-loader": "^0.3.5",
"eslint": "^6.8.0",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"file-loader": "^6.0.0",
"html-loader": "^1.0.0",
"html-webpack-plugin": "^4.2.0",
"https": "^1.0.0",
"jquery": "^3.4.1",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.9.0",
"mongodb": "^3.5.5",
"node-sass": "^4.13.1",
"node-sass-middleware": "^0.11.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"shortid": "^2.2.15",
"style-loader": "^1.1.4",
"ts-node": "^8.8.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"webcamjs": "^1.0.26",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-fix-style-only-entries": "^0.4.0",
"webpack-node-externals": "^1.7.2"
}
}