forked from DevonL1010/project-catwalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "project-catwalk",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"clean": "rm dist/bundle.js",
"build-dev": "webpack --mode development --watch",
"build-prod": "webpack --mode production",
"start": "nodemon ./server/index.js",
"test": "jest"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.15.8",
"@babel/plugin-proposal-function-sent": "^7.14.5",
"@babel/plugin-proposal-throw-expressions": "^7.14.5",
"axios": "^0.24.0",
"express": "^4.17.1",
"formik": "^2.2.9",
"git": "^0.1.5",
"jquery": "^3.6.0",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@hot-loader/react-dom": "^17.0.1+4.13.0",
"@testing-library/react": "^12.1.2",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.0",
"eslint": "^8.1.0",
"eslint-plugin-react": "^7.26.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"nodemon": "^2.0.14",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
}
}