-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 812 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 812 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
{
"name": "LRU-cache",
"version": "1.0.0",
"description": "simple service layer implementation for LRU-cache",
"main": "index.js",
"repository": "git@github.com:design-with-js/LRU-cache.git",
"author": "shubham <shubhammshr621@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-cli": "^6.26.0",
"babel-jest": "^24.7.1",
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"jest": "^24.7.1"
},
"dependencies": {
"axios": "^0.18.1",
"json-server": "^0.14.2"
},
"scripts": {
"seed": "json-server db/db.json & sleep 5 node --experimental-modules db/index.mjs",
"server": "json-server --watch db/db.json",
"test": "concurrently 'yarn server' 'jest --verbose'"
}
}