-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.91 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
{
"name": "aegis_landing",
"version": "0.1.0",
"homepage": ".",
"owner": "@github.com/YiVal",
"type": "module",
"license": "AGPL-3.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.8.8",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.20",
"axios": "^1.6.2",
"graphql": "^16.8.1",
"i18next": "^23.7.16",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.0",
"react-player": "^2.14.1",
"react-router-dom": "^6.20.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^4.1.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.5.11",
"@types/node": "^16.18.61",
"@types/puppeteer": "^7.0.4",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"autoprefixer": "^10.4.17",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-prettier": "^5.1.2",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"puppeteer": "^21.6.0",
"react-scripts": "5.0.1",
"stylelint": "^16.2.0",
"stylelint-config-recess-order": "^4.4.0",
"stylelint-config-recommended-less": "^3.0.1",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-tailwindcss": "^0.0.7",
"stylelint-prettier": "^5.0.0",
"stylelint-scss": "^6.0.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"dev": "react-scripts start",
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build -t true -r https://[email protected]/YiVal/aegis_landing_page.git",
"test": "jest --config=jest.e2e.config.json --passWithNoTests",
"test:unit": "jest --config=jest.unit.config.json --passWithNoTests",
"test:e2e": "jest --config=jest.e2e.config.json --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"eject": "react-scripts eject",
"schema": "graphql-codegen",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"stylelint": "stylelint \"**/*.css\"",
"stylelint-fix": "stylelint \"**/*.css\" --fix"
}
}