-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.3 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
{
"name": "blob-farm",
"version": "1.0.0",
"description": "An Express, React with Typescript and Less application",
"main": "/src/client/index.tsx",
"scripts": {
"build": "webpack --mode production",
"start": "npm run build && npm run server",
"client": "craco start",
"server": "tsc -p tsconfig.server.json && node server/index.js",
"dev": "concurrently \"nodemon\" \"npm run client\"",
"server-dev": "nodemon"
},
"author": "Blobr",
"dependencies": {
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/tinycolor2": "^1.4.3",
"antd": "^4.18.7",
"axios": "^0.26.0",
"express": "^4.16.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-query": "^3.34.15",
"react-router-dom": "^6.2.1",
"tinycolor2": "^1.4.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@craco/craco": "^6.4.3",
"@tsconfig/node14": "^1.0.1",
"@types/express": "^4.17.8",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-eslint": "^10.0.0",
"babel-polyfill": "^6.26.0",
"concurrently": "^7.0.0",
"copy-webpack-plugin": "^10.2.4",
"craco-antd": "^1.19.0",
"craco-less": "^2.0.0",
"css-loader": "^6.6.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mini-css-extract-plugin": "^2.5.3",
"nodemon": "^2.0.15",
"react-scripts": "^4.0.3",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.1.3",
"url-loader": "^4.1.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpackbar": "^5.0.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}