-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "js-conf-chile-2020",
"version": "0.1.0",
"description": "JS Conf Chile 2020 Website.",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"test": "jest --config jest.config.js",
"lint": "eslint .",
"update-snapshot": "npm test -- --updateSnapshot",
"update-contributors": "all-contributors generate"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"all-contributors-cli": "^6.20.0",
"babel-jest": "^27.5.1",
"eslint": "^8.11.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-standard": "^4.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"react-test-renderer": "^17.0.2"
},
"author": "Gonzalo Pincheira <[email protected]>",
"license": "MIT",
"dependencies": {
"framer-motion": "^6.2.8",
"isomorphic-unfetch": "^3.1.0",
"mailchimp-api-v3": "^1.15.0",
"md5": "^2.3.0",
"next": "^12.1.0",
"nextjs-fonts": "^0.22.0",
"node-fetch": "^3.2.3",
"node-sass": "^7.0.1",
"pretty-quick": "^3.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-recaptcha-v3": "^1.9.7",
"react-helmet": "^6.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}