-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
44 lines (44 loc) · 1.06 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
41
42
43
44
{
"name": "exchange",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"test:ui": "run-p server:start cypress:dev",
"server:start": "http-server",
"cypress:dev": "cypress open"
},
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@types/jest": "^25.1.1",
"babel-jest": "^25.1.0",
"cypress": "^3.8.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-cypress": "^2.8.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"esm": "^3.2.25",
"jest": "^25.1.0",
"npm-run-all": "^4.1.5"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"collectCoverageFrom": [
"<rootDir>/src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/"
]
}
}