-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.69 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "amaliacardo-admin",
"version": "0.0.1",
"description": "Admin tool for amaliacardo",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --inspect=5858 -r ts-node/register ./src/index.ts",
"start:watch": "nodemon",
"build": "tsc",
"serve": "http-server site"
},
"repository": {
"type": "git",
"url": "cloudnode@git.cloudno.de:/git/antonio.dalessio/7645-0496f4cf708b20ec817ecf2f537cb2ab.git"
},
"author": "Antonio D'Alessio",
"license": "ISC",
"dependencies": {
"basic-ftp": "^4.5.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fs": "0.0.1-security",
"fs-extra": "^10.0.0",
"handlebars": "^4.7.6",
"http": "*",
"jimp": "^0.10.3",
"jquery-zoom": "^1.7.21",
"mongoose": "5.10.14",
"node-fetch": "^2.6.0",
"nodemailer": "^6.4.6",
"ts-node": "8.10.2",
"underscore": "^1.10.2",
"webp-converter": "^2.2.3",
"yaml": "^1.9.2"
},
"devDependencies": {
"@types/express": "4.17.9",
"@types/mongoose": "5.10.0",
"@types/node": "13.13.30",
"grunt": "^1.1.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-compass": "^1.1.1",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-webfont": "^1.7.2",
"http-server": "^0.12.3",
"lodash": "^4.17.15",
"node-watch": "^0.7.2",
"nodemon": "^2.0.3",
"reflect-metadata": "^0.1.13",
"typescript": "3.9.7"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules",
"**/*.hbs"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
}
}