-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.08 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
74
75
76
77
78
{
"name": "trip-planner",
"version": "0.1.0",
"homepage": "https://tripplanner.cafe",
"private": true,
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test-mocha": "mocha --require ts-node/register src/**/test.ts --watch",
"test": "react-app-rewired test",
"coverage": "npm test -- --coverage",
"eject": "react-scripts eject"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testEnvironment": "node"
},
"dependencies": {
"@firebase/firestore-types": "^1.2.0",
"@githubprimer/octicons-react": "^8.5.0",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.6",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"axios": "^0.18.0",
"draft-js": "^0.10.5",
"firebase": "^5.9.2",
"formik": "^1.5.2",
"google-map-react": "^1.1.2",
"js-file-download": "^0.4.5",
"lodash": "^4.17.11",
"mobx": "^5.9.4",
"mobx-react-lite": "^1.2.0",
"normalize.css": "^8.0.1",
"react": "^16.8.1",
"react-beautiful-dnd": "^10.1.1",
"react-dom": "^16.8.1",
"react-draft-wysiwyg": "^1.13.2",
"react-icons": "^3.6.1",
"react-load-script": "^0.0.6",
"react-markdown": "^4.0.8",
"react-modal": "^3.8.1",
"react-places-autocomplete": "^7.2.1",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"redux-thunk": "^2.3.0",
"sinon": "^7.3.2",
"typescript": "^3.4.4"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/register": "^7.4.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"babel-preset-mobx": "^2.0.0",
"better-assert": "^1.0.2",
"chai": "^4.2.0",
"customize-cra": "^0.2.12",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"mocha": "5.2.0",
"react-app-rewired": "^2.1.1",
"react-scripts": "2.1.3",
"ts-node": "^8.1.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}