forked from joseluisgs/testing-js-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 KB
/
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
39
40
{
"name": "testing-js",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "node --require @babel/register src/index.js",
"lint": "eslint 'src/**/*.js'",
"fix": "eslint --fix 'src/**/*.js'",
"watch": "nodemon",
"build": "babel src -d dist",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"test:coverage-all": "jest --coverage --watchAll"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/register": "^7.12.13",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-preset-airbnb": "^5.0.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
},
"dependencies": {
"@babel/runtime": "^7.12.13",
"axios": "^0.21.1"
}
}