forked from freshprincefecflamongos2/Front-End-Capstone-FEC
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "front-end-capstone-fec",
"version": "1.0.0",
"description": "Front End Capstone Project, FP Team",
"main": "server/index.js",
"scripts": {
"testC": "jest --coverage --coverageReporters=\"text-summary\"",
"test": "jest",
"server-dev": "npx nodemon --watch server server/index.js",
"client-dev": "webpack --config webpack.config.js -w",
"start": "npx webpack & node server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freshprincefecflamongos2/Front-End-Capstone-FEC.git"
},
"keywords": [],
"author": "Timothy Loo, Blake Lenhard, Brian Pham",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"cloudinary-core": "^2.13.0",
"cloudinary-react": "^1.8.1",
"date-fns": "^2.29.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"nodemon": "^2.0.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-spinners": "^0.13.4",
"styled-components": "^5.3.5",
"underscore": "^1.13.4"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@testing-library/react": "^13.3.0",
"babel-jest": "^29.0.1",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"jest": "^29.0.1",
"react-test-renderer": "^18.2.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}