-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.11 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
{
"name": "fancheer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --devtool eval-source-map --mode=development --history-api-fallback --open",
"test:unit": "jest:unit",
"test:watch": "jest --watchAll",
"coverage": "jest --coverage",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint ./src -c ./.eslintrc.js --ext .js, .jsx",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint ./src -c ./.eslintrc.js --fix --ext .js,.jsx",
"build:dev": "webpack --mode=development --config webpack.config.js",
"build:prod": "webpack --mode=production --config webpack.config.js",
"crawling": "node ./scripts/namu.js"
},
"homepage": "https://koremp.github.io/fancheer",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@emotion/react": "^11.1.2",
"@emotion/styled": "^11.0.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@reduxjs/toolkit": "^2.2.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"cheerio": "^1.0.0",
"eslint": "^9.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.6.2",
"file-loader": "^6.2.0",
"given2": "^2.1.7",
"globals": "^15.9.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-plugin-context": "^2.9.0",
"jsdom": "^24.1.1",
"puppeteer": "^23.0.2",
"react-helmet": "^6.1.0",
"redux-mock-store": "^1.5.4",
"start-server-and-test": "^2.0.5",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@codeceptjs/configure": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.0"
}
}