forked from batfishpharmaceuticals/MyDDIChecker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.25 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ddichecker",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"start": " cross-env NODE_ENV=production nodemon --exec babel-node server/server.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"dev": "cross-env NODE_ENV=development concurrently \"webpack serve --open\" \"nodemon --exec babel-node server/server.js\"",
"test": "jest --verbose --updateSnapshot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/batfishpharmaceuticals/ddichecker.git"
},
"keywords": [],
"author": "batfishpharmaceuticals",
"license": "ISC",
"bugs": {
"url": "https://github.com/batfishpharmaceuticals/ddichecker/issues"
},
"homepage": "https://github.com/batfishpharmaceuticals/ddichecker#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-async-to-generator": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"node-forge": "^0.10.0",
"nodemon": "^2.0.12",
"puppeteer": "^9.1.1",
"react-test-renderer": "^17.0.2",
"redux-mock-store": "^1.5.4",
"regenerator-runtime": "^0.13.9",
"style-loader": "^3.2.1",
"supertest": "^6.1.6",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0",
"webpack-hot-middleware": "^2.25.0"
},
"dependencies": {
"@babel/node": "^7.14.9",
"@shelf/jest-mongodb": "^2.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"express": "^4.17.1",
"jest": "^27.1.0",
"jest-puppeteer": "^5.0.4",
"mongoose": "^6.0.0",
"node-fetch": "^2.6.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.1.1",
"redux-devtools-extension": "^2.13.9",
"webpack": "^5.51.1"
},
"jest": {
"preset": "@shelf/jest-mongodb"
}
}