-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "comcast.github.io",
"version": "2.0.0",
"description": "Comcast Open Source Software Portal",
"main": "index.jsx",
"scripts": {
"dev": "next -p 3001",
"build": "next build && next export -o docs && npm run publishsitemap && touch docs/.nojekyll",
"deploy": "npm run build && git add . && git commit -m \"Deploy docs\" && git push origin main",
"publishsitemap": "node scripts/publishSitemap.js",
"start": "next start",
"lint": "npm run lint:js",
"lint:js": "eslint . --ext js,jsx",
"lint:sass": "",
"test": "test"
},
"repository": {
"type": "git",
"url": "git@github.com:Comcast/comcast.github.io.git"
},
"author": "Comcast_Open_Source_Services@comcast.com",
"license": "Apache-2.0",
"dependencies": {
"build": "^0.1.4",
"elliptic": "^6.5.4",
"browserslist": ">=4.16.5",
"graphql": "^15.4.0",
"graphql-request": "^3.3.0",
"lodash": ">=4.17.21",
"next": "^10.0.1",
"glob-parent": ">=5.1.2",
"node-fetch": "^2.6.7",
"prop-types": "^15.7.2",
"postcss": ">=8.2.10",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-markdown": "^5.0.3",
"ssri": "~8.0.1",
"swr": "^0.3.9",
"uglify-js": ">=2.6.0",
"webpack": "^4.20.2",
"y18n": "~4.0.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.12.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.0",
"react-svg-loader": "^3.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
}
}