-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "aqualog",
"description": "An application for keeping track of aquarium parameters, and maintenance activity",
"repository": "github:manolof/aqualog",
"version": "0.0.0",
"license": "MIT",
"engines": {
"node": "^10.0.0",
"npm": "^6.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --coverage",
"test-watch": "npm run test -- --watch",
"lint": "eslint ./src --fix",
"eject": "react-scripts eject"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.8",
"@fortawesome/free-regular-svg-icons": "^5.5.0",
"@fortawesome/react-fontawesome": "^0.1.3",
"bulma": "^0.7.2",
"bulma-tooltip": "^2.0.2",
"chart.js": "^2.7.3",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "5.6.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-react": "^7.11.1",
"firebase": "^5.5.8",
"moment": "^2.22.2",
"node-sass": "^4.10.0",
"npm-run-all": "^4.1.5",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-chartjs-2": "^2.7.4",
"react-dom": "^16.6.3",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.3",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!/node_modules/",
"!src/*.js"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}