forked from game-ci/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.26 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "game-ci",
"version": "0.1.0",
"description": "Website for projects within the GameCI group",
"private": true,
"engines": {
"node": "12.x"
},
"scripts": {
"dev": "cross-env NODE_OPTIONS=\"-r esm\" next",
"build": "node -v && yarn update-menu && cross-env NODE_OPTIONS=\"-r esm\" next build && yarn update-search",
"update-menu": "cross-env NODE_OPTIONS=\"-r esm -r dotenv/config\" ts-node -r tsconfig-paths/register tools/menu/cli-generate.ts",
"update-search": "cross-env NODE_OPTIONS=\"-r esm -r dotenv/config\" ts-node -r tsconfig-paths/register tools/search/push-search-payload.ts",
"analyze": "cross-env-shell NODE_OPTIONS=\"-r esm\" ANALYZE=true next build",
"lint": "prettier --write . --loglevel=warn && eslint . --quiet --fix",
"eslint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"start": "cross-env NODE_OPTIONS=\"-r esm\" next start"
},
"dependencies": {
"@next/bundle-analyzer": "^10.0.6",
"@reduxjs/toolkit": "^1.5.0",
"@svgr/webpack": "^5.5.0",
"@types/lodash": "^4.14.168",
"@types/react-redux": "^7.1.16",
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"algoliasearch": "^4.8.4",
"antd": "4.12.2",
"babel-plugin-import": "1.13.3",
"cross-env": "^7.0.3",
"current-git-branch": "^1.1.0",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"firebase": "^8.2.9",
"gray-matter": "4.0.2",
"highlight.js": "^10.5.0",
"less": "3.0.4",
"lodash": "^4.17.20",
"next": "10.0.1",
"null-loader": "2.0.0",
"postcss-preset-env": "^6.7.0",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.1.0",
"react-instantsearch": "^6.9.0",
"react-instantsearch-dom": "^6.9.0",
"react-markdown": "5.0.3",
"react-redux": "^7.2.2",
"reactfire": "^3.0.0-rc.0",
"redux": "^4.0.5",
"sass": "^1.32.8",
"tsconfig-paths": "^3.9.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.12.13",
"@types/react": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-plugin-inline-react-svg": "^1.1.2",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^27.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"redux-devtools": "^3.7.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"browser": {
"fs": false,
"path": false
},
"husky": {
"hooks": {
"pre-commit": "yarn update-menu && git add core/menu-structure.json && lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add",
"jest --findRelatedTests"
],
"*.{json,md,yaml,yml}": [
"prettier --write",
"git add"
]
}
}