-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "fondet",
"version": "2.0.0",
"description": "fondet infopage",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint:eslint": "eslint . --ignore-path .prettierignore",
"lint:prettier": "prettier '**/*.{js,css,md}' --check",
"lint": "yarn lint:eslint && yarn lint:prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abakus-ntnu/fondet.git"
},
"keywords": [
"fondet",
"abakus"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/abakus-ntnu/fondet/issues"
},
"homepage": "https://github.com/abakus-ntnu/fondet#readme",
"dependencies": {
"axios": "^0.26.0",
"next": "^12.0.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-iframe": "^1.8.0",
"recharts": "2.1.12"
},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
}
}