-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
36 lines (36 loc) · 954 Bytes
/
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
{
"name": "ditado-api",
"version": "1.0.0",
"description": "Public API to serve popular portuguese sayings, i.e., \"ditados\"",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "./node_modules/.bin/jest",
"lint": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/antonioalmeida/ditado-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/antonioalmeida/ditado-api/issues"
},
"homepage": "https://github.com/antonioalmeida/ditado-api#readme",
"dependencies": {
"@jest/globals": "^27.3.1",
"dotenv": "^16.0.3",
"express": "^4.17.3",
"json-server": "^0.17.1",
"masto": "^4.6.2",
"node-schedule": "^2.1.0"
},
"devDependencies": {
"ajv": "^8.11.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"jest": "^25.x"
}
}