forked from SocialGouv/landing-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "tumeplay-landing",
"version": "1.3.1",
"main": "index.js",
"license": "MIT",
"private": true,
"repository": "",
"dependencies": {
"@socialgouv/matomo-next": "^1.2.2",
"axios": "^0.21.4",
"bootstrap": "^4.6.1",
"js-yaml-loader": "^1.2.2",
"leaflet": "^1.7.1",
"next": "^10.0.9",
"nextjs-breadcrumbs": "^1.1.9",
"react": "^17.0.2",
"react-bootstrap": "^1.6.4",
"react-dom": "^17.0.2",
"react-leaflet": "^3.2.2",
"react-slick": "^0.28.1",
"recharts": "^2.1.6",
"sass": "^1.43.5",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.3"
},
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"export": "next export",
"lint": "eslint src/pages/*.js",
"k8s": "yarn --silent --cwd .k8s",
"test": "exit 0"
},
"devDependencies": {
"@socialgouv/eslint-config-react": "^1.61.0",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"prettier": "^2.2.1"
},
"eslintConfig": {
"rules": {
"react/prop-types": "warn",
"simple-import-sort/sort": "off",
"jsx-a11y/anchor-is-valid": "warn",
"react/no-unescaped-entities": "warn"
},
"extends": [
"@socialgouv/eslint-config-react"
]
}
}