-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
71 lines (71 loc) · 2.12 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
{
"name": "cs-2024",
"version": "0.1.0",
"private": true,
"description": "CS2024",
"main": "index.js",
"type": "module",
"keywords": [],
"author": "zimrick",
"license": "ISC",
"scripts": {
"serve": "serve out",
"clean": "rm -Rf .next && rm -Rf out",
"createMarkets": "node scripts/createMarkets.js",
"prepareData": "node scripts/prepareData.js",
"prepareImages": "node scripts/prepareImages.js",
"prepareSearchIndex": "node scripts/prepareSearchIndex.js",
"copyFiles": "cp content/etf-data.txt public/data/ets-data.txt && cp content/capacity-generation.txt public/data/capacity-generation.txt",
"develop": "npm run copyFiles && npm run prepareImages && npm run prepareSearchIndex && next dev",
"build": "npm run copyFiles && npm run prepareImages && npm run prepareSearchIndex && next build",
"export": "npm run build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"d3-dsv": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-shape": "^3.2.0",
"downshift": "^9.0.8",
"email-validator": "^2.0.4",
"framer-motion": "^11.3.30",
"fs": "^0.0.1-security",
"jsonp": "^0.2.1",
"lodash": "^4.17.21",
"mapbox-gl": "^3.7.0",
"match-sorter": "^7.0.0",
"next": "14.2.6",
"next-mdx-remote": "^5.0.0",
"path": "^0.12.7",
"react": "^18",
"react-dom": "^18",
"react-simple-maps": "^3.0.0",
"serve": "^14.2.4",
"sharp": "^0.33.5",
"usehooks-ts": "^3.1.0",
"zustand": "^5.0.1"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "preserve",
"requirePragma": false,
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false
}
}