-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.45 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
{
"name": "chartjs-project",
"version": "1.0.0",
"description": "Chart JS Example",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"test": "jest"
},
"author": "ulfbiallas <ulf@scalable.capital>",
"license": "UNLICENSED",
"dependencies": {
"chart.js": "2.7.3",
"prop-types": "15.6.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "4.3.1"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "^7.8.4",
"babel-jest": "^24.9.0",
"babel-loader": "8.0.5",
"copy-webpack-plugin": "4.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^24.9.0",
"path": "0.12.7",
"react-test-renderer": "^16.12.0",
"webpack": "4.29.0",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.1.14"
},
"prettier": {
"singleQuote": true
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js"
],
"testPathIgnorePatterns": [
"./node_modules/"
],
"collectCoverageFrom": [
"!/node_modules/*"
]
}
}