-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
79 lines (79 loc) · 1.83 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
75
76
77
78
79
{
"name": "enspire-2022",
"version": "1.0.0",
"description": "Website for Ecell Enspire 2022",
"author": "Ecell IIITL",
"devDependencies": {
"@mapbox/rehype-prism": "^0.8.0",
"@svgr/webpack": "^6.3.1",
"esbuild": "^0.14.2",
"eslint": "^8.21.0",
"eslint-config-next": "^12.2.5",
"fs-extra": "^10.1.0",
"globby": "^13.1.2",
"postcss": "^8.4.16",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.7.2",
"prettier": "^2.7.1",
"puppeteer": "^16.1.0",
"reading-time": "^1.5.0",
"rehype-img-size": "^1.0.1",
"rehype-preset-minify": "^6.0.0",
"rehype-slug": "^5.0.1",
"stylelint": "^14.9.1",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^26.0.0"
},
"dependencies": {
"@merc/react-timeline": "^0.1.42",
"fathom-client": "^3.5.0",
"firebase": "^9.14.0",
"framer-motion": "^7.1.0",
"jquery": "^3.6.1",
"mdx-bundler": "^9.0.1",
"next": "^12.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.143.0",
"three-stdlib": "^2.13.0"
},
"scripts": {
"dev": "next dev",
"build": "next build && next export -o build/",
"start": "next start",
"test": "echo 'write some tests'"
},
"browserslist": {
"production": [
">10%",
"not dead",
"not ie 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": "16.x"
},
"next-unused": {
"alias": {},
"include": [
"src/pages",
"src/components",
"src/components/*",
"src/*"
],
"exclude": [],
"entrypoints": [
"src/pages",
"src/components",
"src/components/*",
"src/*"
]
}
}