-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
87 lines (87 loc) · 2.65 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
80
81
82
83
84
85
86
87
{
"name": "acm-website",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.1.19",
"dotenv": "^16.4.5",
"googleapis": "^109.0.1",
"moment": "^2.29.4",
"next": "^11.1.4",
"next-seo": "^5.5.0",
"react": "^17.0.2",
"react-accessible-accordion": "^5.0.0",
"react-big-calendar": "^1.8.4",
"react-countdown": "^2.3.2",
"react-dom": "^17.0.2",
"sass": "^1.58.3",
"yarn": "^1.22.21"
},
"scripts": {
"start": "next dev",
"start-production": "next start",
"build": "npm run ofp && npm run thp && npm run gmp && next build",
"lint-js": "eslint \"**/*.js\"",
"lint-js-fix": "eslint --fix \"**/*.js\"",
"lint-css": "stylelint \"**/*.css\" \"**/*.scss\"",
"lint-css-fix": "stylelint --fix \"**/*.css\" \"**/*.scss\"",
"lint": "eslint \"**/*.js\" && stylelint \"**/*.css\" \"**/*.scss\"",
"lint-fix": "eslint --fix \"**/*.js\" && stylelint --fix \"**/*.css\" \"**/*.scss\"",
"reg": "node scripts/recurring-event-generator.mjs",
"seg": "node scripts/single-event-generator.mjs",
"ofp": "node scripts/officer-parser.mjs",
"thp": "node scripts/town-hall-generator.mjs",
"gmp": "node scripts/gm-generator.mjs",
"test": "jest --env=jsdom"
},
"eslintConfig": {
"extends": "react-app"
},
"ignorePatterns": [],
"repository": {
"type": "git",
"url": "git+https://github.com/uclaacm/website.git"
},
"author": "uclaacm",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/uclaacm/website/issues"
},
"homepage": "https://uclaacm.com",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@axe-core/react": "^4.7.3",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^12.1.5",
"csv-parser": "^3.0.0",
"eslint": "^7.32.0",
"eslint-config-next": "^13.4.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-axe": "^7.0.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.31",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-scss": "^3.21.0"
}
}