This repository has been archived by the owner on Mar 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 3.49 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
105
106
107
108
109
110
111
112
113
114
{
"name": "dragalia-site-front",
"description": "Frontend of Dragalia Lost info website by OM.",
"repository": "https://github.com/RaenonX-DL/dragalia-site-front",
"version": "2.16.1",
"engines": {
"node": "16.x",
"npm": "^8.1.3"
},
"private": true,
"scripts": {
"dev": "nodemon",
"test": "jest --config jest.config.ts --maxWorkers=50% --colors",
"test:cypress": "cypress run",
"test:ci-jest": "node --max-old-space-size=8192 ./node_modules/.bin/jest --config jest.config.ts --maxWorkers=50% --colors --ci --reporters=default --reporters=jest-junit --coverage",
"test:ci-e2e": "start-test 3000 test:cypress",
"lint": "eslint src --ext .ts,.tsx",
"lint:css": "stylelint **/*.scss",
"lint:fix": "eslint src --fix --ext .ts,.tsx",
"build": "npm-run-all build:*",
"build:next": "next build",
"build:server": "tsc --p ./server/tsconfig.json",
"start": "pm2-runtime start pm2.yml --env production"
},
"main": "./dist/server/main.js",
"dependencies": {
"@ctrl/react-adsense": "^1.3.1",
"@reduxjs/toolkit": "^1.6.1",
"bootstrap": "^4.6.0",
"color": "^4.0.1",
"decimal.js": "^10.3.1",
"fastify": "^3.21.5",
"mathjs": "^9.4.4",
"mongodb": "^3.7.0",
"newrelic": "^8.3.0",
"next": "^12.0.3",
"next-auth": "^3.29.0",
"node-fetch": "^2.6.2",
"opencc-js": "^1.0.3",
"pm2": "^5.1.1",
"react": "^17.0.2",
"react-audio-player": "^0.17.0",
"react-bootstrap": "^1.6.3",
"react-dom": "^17.0.2",
"react-markdown": "^6.0.3",
"react-redux": "^7.2.4",
"react-timeago": "^6.2.1",
"redux-persist": "^6.0.0",
"remark-gfm": "^1.0.0",
"universal-cookie": "^4.0.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.2.1",
"@types/color": "^3.0.2",
"@types/jest": "^27.0.1",
"@types/mongodb": "^3.6.20",
"@types/node": "^16.11.14",
"@types/node-fetch": "^2.5.12",
"@types/opencc-js": "^1.0.0",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/react-timeago": "^4.1.3",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-preset-react-app": "^10.0.0",
"cypress": "^8.3.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^12.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.12.2",
"jest": "^27.1.0",
"jest-junit": "^13.0.0",
"msw": "^0.35.0",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"pino-pretty": "^7.0.0",
"react-app-polyfill": "^2.0.0",
"start-server-and-test": "^1.14.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.20.1",
"ts-node": "^9.1.1",
"typeorm": "^0.2.37",
"typescript": "^4.4.4",
"typescript-plugin-css-modules": "^3.4.0"
},
"browserslist": {
"production": [
"> 0.2%",
"not dead",
"not op_mini all",
"cover 99.5%"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest-junit": {
"suiteNameTemplate": "{filepath}",
"outputDirectory": ".",
"outputName": "junit.xml"
}
}