-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 816 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 816 Bytes
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
{
"name": "@jscrates/api",
"version": "1.6.0",
"author": "JSCrates",
"description": "Backend for handling requests from JSCrates client.",
"private": true,
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"prettier:check": "prettier --check \"**/*.{js,ts}\"",
"prettier:write": "prettier --write \"**/*.{js,ts}\"",
"test": "mocha"
},
"dependencies": {
"@google-cloud/storage": "^5.18.2",
"axios": "^0.26.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonschema": "^1.4.0",
"mongoose": "^6.2.2",
"multer": "^1.4.4"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^9.2.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}