This repository was archived by the owner on Mar 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.57 KB
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
{
"name": "assignment5",
"version": "1.0.0",
"description": "Assignment 5",
"main": "/src/server/index.js",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.9.0",
"@hapi/joi": "^17.1.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"leaflet": "^1.7.1",
"mapbox-gl": "^1.12.0",
"md5": "^2.2.1",
"mongoose": "^5.10.8",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"prop-types": "^15.7.2",
"pug": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-draggable": "^4.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"request": "^2.88.2",
"serve-favicon": "^2.5.0",
"simple-env-config": "^1.0.1",
"styled-components": "^5.0.1"
},
"scripts": {
"build": "webpack",
"start": "node ./src/server/index.js",
"start-test": "cross-env NODE_ENV=test node ./src/server/index.js",
"start-travis": "cross-env NODE_ENV=travis node ./src/server/index.js",
"test": "cross-env NODE_ENV=test mocha --recursive",
"test-travis": "cross-env NODE_ENV=travis mocha --recursive"
},
"author": "G. Hemingway",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"async": "^3.2.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"mocha": "^7.1.1",
"prettier": "^2.0.2",
"puppeteer": "^2.1.1",
"should": "^13.2.3",
"superagent": "^5.2.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}