-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.96 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.96 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "avocado",
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
],
"verbose": true,
"coverageThreshold": {
"global": {
"functions": 100,
"lines": 100,
"statements": -10
}
},
"moduleNameMapper": {
"^avocado/(.*)$": "<rootDir>/src/$1"
}
},
"version": "1.0.0",
"main": "index.js",
"license": "MPL",
"scripts": {
"start": "parcel src/index.html",
"test": "jest --coverage",
"lint": "eslint src/**/*.js src/**/*.jsx",
"lint-fix": "eslint --fix src/**/*.js src/**/*.jsx",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"bundle": "parcel build src/index.html --public-url ."
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"jest-fetch-mock": "^2.1.2",
"parcel-bundler": "^1.0.1",
"prettier": "^1.17.1",
"react-test-renderer": "^16.8.6",
"redux-mock-store": "^1.5.3",
"sass": "^1.22.10"
},
"dependencies": {
"actions": "^1.3.0",
"assets": "^3.0.1",
"bootstrap": "^4.3.1",
"immutable": "^4.0.0-rc.12",
"jquery": "^3.4.1",
"plotly.js": "^1.49.3",
"popper.js": "^1.15.0",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.2.0",
"react-plotlyjs": "^0.4.4",
"react-redux": "^7.0.3",
"redux": "^4.0.1",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.3.0",
"v8": "^0.1.0"
},
"alias": {
"avocado": "./src"
}
}