-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
122 lines (122 loc) · 3.61 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
115
116
117
118
119
120
121
122
{
"name": "react-cnode",
"version": "0.0.1",
"description": "A frontend project for BBS community using cnodejs.org API developed with React.js.",
"main": "src/index.js",
"author": "FuNn1esT <admin@funn1est.cn>",
"license": "MIT",
"scripts": {
"precommit": "lint-staged",
"start": "webpack serve --config webpack.config.dev.js --progress",
"build": "webpack --config webpack.config.prod.js --progress",
"test": "jest --config .jest.config.js",
"test:watch": "npm run test -- --watch",
"test:update": "npm run test -- -u",
"coverage": "npm run test -- --coverage",
"prettier": "prettier --write \"src/**/*.js\"",
"lint:style": "stylelint \"src/**/*.scss\" --syntax scss"
},
"dependencies": {
"@tiptap/react": "^2.0.0-beta.61",
"@tiptap/starter-kit": "^2.0.0-beta.98",
"antd": "^3.26.20",
"axios": "^0.21.1",
"classnames": "^2.2.5",
"easymde": "^2.15.0",
"enquire-js": "^0.2.1",
"immutable": "^4.0.0-rc.12",
"marked": "^3.0.0",
"moment": "^2.22.1",
"prop-types": "^15.6.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "^6.1.0",
"react-infinite-scroller": "^1.1.4",
"react-redux": "^7.0.3",
"react-router-config": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-simplemde-editor": "^5.0.1",
"redux": "4.1.1",
"redux-actions": "^2.3.0",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.2.0",
"turndown": "^7.1.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^10.3.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.11.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"core-js": "^2.6.12",
"css-loader": "^2.1.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.13.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^3.1.1",
"eslint-plugin-import": "2.24.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.2",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-localstorage-mock": "^2.2.0",
"less": "^3.13.1",
"less-loader": "^5.0.0",
"lint-staged": "^11.1.2",
"mkdirp": "^1.0.4",
"mockdate": "^3.0.5",
"postcss": "^8.3.6",
"postcss-loader": "^4.3.0",
"prettier": "^2.3.2",
"react-hot-loader": "4.13.0",
"redux-devtools-extension": "^2.13.2",
"redux-mock-store": "^1.5.1",
"sass": "^1.38.0",
"sass-loader": "^10.2.0",
"sinon": "^11.1.2",
"style-loader": "^2.0.0",
"stylelint": "13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"sw-precache-webpack-plugin": "^1.0.0",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0",
"webpack-manifest-plugin": "^4.0.2",
"webpack-merge": "^5.8.0"
},
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 9"
],
"lint-staged": {
"src/**/*.{js,jsx}": [
"prettier --write",
"git add"
],
"src/**/*.scss": [
"stylelint --syntax scss --fix",
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
}