This repository has been archived by the owner on Jan 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.19 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
{
"author": "EA31337 Ltd",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/EA31337/EA-FX-Validator-site/issues"
},
"dependencies": {
"autoprefixer": "^10.4.2",
"axios": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.19.2",
"http-proxy-middleware": "^2.0.1",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"postcss": "^8.4.31",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-router": "^6.2.1",
"react-scripts": "^5.0.0",
"sass": "^1.49.7",
"tailwindcss": "^3.0.16",
"web-vitals": "^2.1.3"
},
"description": "EA's FX Validator site",
"directories": {
"doc": "docs"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"ajv-cli": "^5.0.0",
"eslint-cli": "^1.1.1",
"gh-pages": "^5.0.0",
"husky": "^7.0.4",
"jest-cli": "^27.4.7",
"next": "^12.1.0",
"next-cli": "^1.0.0",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"run": "^1.4.0"
},
"engines": {
"node": ">=14.0.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"homepage": "https://ea31337.github.io/EA-FX-Validator-site",
"license": "GPL-3.0-or-later",
"name": "ea-fx-validator-site",
"keywords": [
"EA",
"FX"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EA31337/EA-FX-Validator-site.git"
},
"scripts": {
"build": "next build",
"deploy": "gh-pages -b gh-pages -d docs -e docs -tx",
"dev": "next dev",
"eject": "react-scripts eject",
"export": "next export -o docs",
"lint:js": "eslint --fix src/**/*.js",
"nojekyll": "cp -v ./src/.nojekyll ./docs/.nojekyll",
"pre-commit": "npm-run-all -p lint:js test",
"predeploy": "npm run build && npm run export && npm run nojekyll",
"start": "next start",
"test": "react-scripts test --watchAll=false"
},
"version": "0.1.0"
}