-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "fec",
"version": "1.0.0",
"description": "Front End Capstone project",
"main": "index.js",
"scripts": {
"build": "webpack",
"watch": "webpack -w",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RFE7Artemis/FEC.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RFE7Artemis/FEC/issues"
},
"homepage": "https://github.com/RFE7Artemis/FEC#readme",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@hot-loader/react-dom": "^17.0.1",
"babel-loader": "^8.2.3",
"jest": "^27.4.5",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1"
},
"dependencies": {
"axios": "^0.24.0",
"bluebird": "^3.7.2",
"chai": "^4.3.4",
"express": "^4.17.2",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1"
}
}