forked from hackclub/apply
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "@hackclub/apply",
"description": "Apply to Hack Club at apply.hackclub.com",
"version": "0.1.0",
"author": "Lachlan Campbell <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"compile": "formatjs compile",
"build": "next build",
"start": "next start",
"dev": "next dev",
"fmt": "npx prettier \"{src/**,}/*.js\" --single-quote --no-semi --write"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"@hackclub/design-system": "^0.0.1-18",
"@hackclub/icons": "^0.0.3",
"@hackclub/season": "^0.0.3",
"babel-helpers": "^6.24.1",
"babel-plugin-styled-components": "^1.10.0",
"formik": "^1.5.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.21",
"next": "^10.2",
"prop-types": "^15.7.2",
"react": "latest",
"react-dom": "latest",
"react-helmet": "^5.2.0",
"react-intl": "^5.20.1",
"styled-components": "3.4.10",
"yup": "^0.27.0"
},
"devDependencies": {
"@formatjs/cli": "^4.2.19"
}
}