-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.63 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
{
"name": "new-delhi-space-society.github.io",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"axios": "^1.7.2",
"babel-plugin-styled-components": "^1.12.0",
"csv-parser": "^3.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"lqip-loader": "^2.2.1",
"markdown-to-jsx": "^7.4.7",
"next": "12",
"next-optimized-images": "^2.6.2",
"papaparse": "^5.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "^18.2.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@types/node": "^15.0.2",
"@types/papaparse": "^5.3.14",
"@types/react": "^17.0.5",
"@types/styled-components": "^5.1.9",
"typescript": "^4.2.4"
},
"babel": {
"env": {
"development": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true
}
]
]
},
"production": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": false
}
]
]
}
}
},
"volta": {
"node": "16.13.1"
}
}