-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 905 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
{
"name": "mock-me",
"version": "1.0.0",
"description": "Node app that mocks and serves mocked content",
"main": "index.js",
"scripts": {
"clean": "rimraf node_modules",
"dev": "nodemon index.js",
"lint": "./node_modules/.bin/eslint *.js --fix",
"precommit": "yarn lint",
"start": "node index.js",
"test": "./node_modules/.bin/jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/moisessantos/mock-me.git"
},
"author": "Moisés Santos",
"license": "UNLICENSED",
"dependencies": {
"express": "^4.17.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.0.6",
"nodemon": "^2.0.9"
}
}