-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.13 KB
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
{
"name": "tasklist-react",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"proxy": "http://localhost:3000",
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "js,jsx"
}
},
"scripts": {
"start-client": "react-scripts start",
"build": "webpack",
"watch": "npm-watch",
"start": "npm run watch",
"start-dev": "cross-env NODE_ENV=dev nodemon server/index.js",
"test": "cross-env NODE_ENV=test mocha server/test --recursive"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/plugin-transform-exponentiation-operator": "^7.18.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.18.9",
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "^4.11.2",
"axios": "^0.27.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"formik": "^2.2.9",
"html-loader": "^4.1.0",
"html-webpack-plugin": "^5.5.0",
"joi": "^17.6.0",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"mongodb": "^4.9.0",
"npm-watch": "^0.11.0",
"ol": "^7.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-redux": "^8.0.2",
"react-scripts": "^4.0.3",
"redux": "^4.2.0",
"swr": "^1.3.0",
"vis-data": "^7.1.4",
"vis-timeline": "^7.7.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}