forked from savvy-coders/SPA-example-with-Express-and-Mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.69 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.69 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
{
"name": "savvy-starter",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"build": "parcel build index.html",
"deploy": "parcel build index.html && cp ./netlify/_redirects ./dist/",
"serve": "parcel index.html",
"app:watch": "nodemon --watch ./server -e js server/app.js",
"be:test": "npx jasmine",
"fe:test": "npx cypress run"
},
"keywords": [],
"author": "",
"license": "ISC",
"browserslist": [
"since 2017-06"
],
"devDependencies": {
"@parcel/config-default": "^2.9.3",
"@parcel/optimizer-terser": "^2.9.3",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"cypress": "^12.16.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"events": "^3.3.0",
"jasmine": "^5.0.2",
"nodemon": "^2.0.22",
"parcel": "^2.9.3",
"path-browserify": "^1.0.1",
"prettier": "1.19.1",
"process": "^0.11.10",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"supertest": "^6.3.3",
"url": "^0.11.1",
"util": "^0.12.5"
},
"dependencies": {
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "6.1.15",
"@fullcalendar/list": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@sendgrid/mail": "^8.1.4",
"axios": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^5.0.1",
"express": "^4.17.1",
"fabric": "^6.5.3",
"html-literal": "^1.1.0",
"leaflet": "^1.9.4",
"lodash": "^4.17.20",
"mongoose": "^7.2.2",
"navigo": "^8.2.0"
}
}