-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "mnemosyne",
"version": "0.0.1",
"description": "Notekeeping calendar app, created for the fullstackopen 2019 MOOC-course",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node index.js",
"start:test": "cross-env NODE_ENV=test node index.js",
"test": "cross-env NODE_ENV=test jest --verbose --runInBand",
"watch": "cross-env NODE_ENV=development nodemon index.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeodesicCarbon/Mnemosyne.git"
},
"author": "Vadim Gurkalov",
"license": "MIT",
"bugs": {
"url": "https://github.com/GeodesicCarbon/Mnemosyne/issues"
},
"homepage": "https://github.com/GeodesicCarbon/Mnemosyne#readme",
"dependencies": {
"apollo-server": "^2.14.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.6.0",
"lodash": "^4.17.15",
"mongoose": "^5.8.9",
"mongoose-unique-validator": "^2.0.3"
},
"devDependencies": {
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}