-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1018 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
37
38
{
"name": "leanvocab-api",
"version": "1.0.0",
"description": "leanvocab rest api",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"test": "jest",
"build": "rm -rf lib && babel src --out-dir lib --ignore 'src/**/*.spec.js'",
"serve": "yarn build && node lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leanvocab/api.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Leanvocab/api/issues"
},
"homepage": "https://github.com/Leanvocab/api#readme",
"devDependencies": {
"@babel/node": "^7.10.5",
"@shelf/jest-mongodb": "^1.2.3",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
},
"dependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.10.7"
}
}