-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "hello-next",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "12.x"
},
"scripts": {
"dev": "next",
"start-server": "next",
"build": "next build",
"start": "next start -p $PORT & wait-on http://localhost:3000",
"heroku-postbuild": "npm run build",
"cypress:open": "cypress open",
"test": "cypress run",
"test:unit": "jest --verbose",
"test:features": "start-server-and-test start-server http://localhost:3000 test",
"test:all": "start-server-and-test start-server http://localhost:3000 test && jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/runtime": "^7.7.7",
"@google/maps": "^1.0.2",
"babel-jest": "^24.9.0",
"bootswatch": "^4.4.1",
"geolocation": "^0.2.0",
"isomorphic-unfetch": "^3.0.0",
"mongoose": "^5.8.7",
"next": "^9.1.7",
"next-connect": "^0.5.2",
"node-fetch": "^2.6.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-geolocated": "^3.0.1",
"react-google-maps": "^9.4.5",
"swr": "^0.1.16"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.0",
"@babel/plugin-transform-runtime": "^7.7.6",
"@testing-library/react": "^9.4.0",
"cypress": "^3.8.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^24.9.0",
"react-test-renderer": "^16.12.0",
"start-server-and-test": "^1.10.6"
}
}