-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.2 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
{
"name": "dblp",
"version": "1.4.0",
"description": "An awesome DBLP search application",
"main": "./src/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --mode production",
"dev": "cross-env NODE_ENV=development webpack serve --port 2333 --mode development --open",
"format": "prettier --write src/**/*.{js,jsx,css}",
"lint": "stylelint ./src/**/*.css && eslint --ext .js --ext .jsx ./src",
"changeset": "commit-and-tag-version --dry-run -s",
"release": "commit-and-tag-version -s",
"start": "yarn dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sabertazimi/dblp.git"
},
"engines": {
"node": ">=9"
},
"keywords": [
"dblp",
"computer science",
"react"
],
"author": "sabertazimi",
"license": "MIT",
"bugs": {
"url": "https://github.com/sabertazimi/dblp/issues"
},
"homepage": "https://github.com/sabertazimi/dblp",
"packageManager": "yarn@3.6.0",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@dg-scripts/eslint-config": "^5.13.5",
"@dg-scripts/stylelint-config": "^5.13.5",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"commit-and-tag-version": "^11.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.43.0",
"eslint-webpack-plugin": "^4.0.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.24",
"postcss-loader": "^7.3.3",
"prettier": "^2.8.8",
"style-loader": "^3.3.3",
"stylelint": "^15.9.0",
"stylelint-webpack-plugin": "^4.1.1",
"typescript": "^5.1.3",
"webpack": "^5.88.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@ant-design/icons": "^5.1.4",
"antd": "^5.6.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.1",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2"
}
}