-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
70 lines (70 loc) · 1.76 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
{
"name": "cssconfco-website",
"version": "1.0.0",
"description": "CSSConf Colombia Website",
"main": "pages/index.js",
"scripts": {
"lint": "eslint .",
"dev": "next",
"build": "next build",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cssconfco/cssconfco-website.git"
},
"keywords": [],
"author": "https://twitter.com/@cssconfco",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cssconfco/cssconfco-website/issues"
},
"homepage": "https://github.com/cssconfco/cssconfco-website#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@hapi/boom": "^9.0.0",
"base-64": "^0.1.0",
"classnames": "^2.2.6",
"crypto-random-string": "^1.0.0",
"dayjs": "^1.10.4",
"dotenv": "^8.2.0",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.21",
"mailchimp-api-v3": "^1.13.1",
"moment": "^2.24.0",
"next": "^9.3.2",
"nprogress": "^0.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-ga": "^2.7.0",
"react-responsive": "^8.0.1",
"react-select": "^2.0.0",
"react-text-mask": "^5.4.3",
"sha256": "^0.2.0",
"sweetalert": "^2.1.2",
"woocommerce-api": "^1.5.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"husky": ">=1",
"lint-staged": ">=8",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}