-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.5 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
{
"name": "logbook",
"version": "1.0.0",
"description": "Engineer Logbook Application",
"main": "webpack.config.js",
"scripts": {
"dev": "webpack --mode development --watch ./engbook/frontend/src/index.js --output ./engbook/frontend/static/frontend/main.js",
"build": "webpack --mode production ./engbook/frontend/src/index.js --output ./engbook/frontend/static/frontend/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EngineerLogbook/logbook.git"
},
"keywords": [
"Thapar",
"University",
"Application"
],
"author": "Shreshth Arora",
"license": "ISC",
"bugs": {
"url": "https://github.com/EngineerLogbook/logbook/issues"
},
"homepage": "https://github.com/EngineerLogbook/logbook#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"apollo-boost": "^0.4.7",
"axios": "^0.19.2",
"graphql": "^15.0.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0"
}
}