forked from incubateur-ademe/impactco2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.03 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "impactco2",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn iframe && next build",
"postbuild": "next-sitemap",
"iframe": "webpack",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@dnd-kit/core": "^6.0.7",
"@dnd-kit/sortable": "^7.0.2",
"@socialgouv/matomo-next": "^1.6.1",
"@tanstack/react-query": "^4.24.4",
"animated-number-react": "^0.1.2",
"axios": "^1.3.2",
"chrome-aws-lambda": "^10.1.0",
"copy-to-clipboard": "^3.3.3",
"fuse.js": "^6.6.2",
"html-to-image": "^1.11.11",
"iframe-resizer-react": "^1.1.0",
"matomo-tracker": "^2.2.4",
"next": "^13.1.6",
"next-query-params": "^4.1.0",
"next-sitemap": "^3.1.52",
"publicodes": "^1.0.0-beta.66",
"puppeteer-core": "^19.6.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-flip-toolkit": "^7.0.17",
"react-highlight-words": "^0.20.0",
"react-hotjar": "^5.4.1",
"react-range": "^1.8.14",
"react-share": "^4.4.1",
"react-slick": "^0.29.0",
"react-switch": "^7.0.0",
"react-tooltip": "^5.7.5",
"react-use-query-param-string": "^2.0.10",
"sib-api-v3-sdk": "^8.5.0",
"styled-components": "^5.3.6",
"styled-normalize": "^8.0.7",
"twemoji": "^14.0.2",
"use-animate-number": "^1.0.5",
"use-query-params": "^2.2.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-styled-components-a11y": "^0.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
"prettier": "2.8.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css,less,ejs}": [
"prettier --write"
]
}
}