-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.35 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.35 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "restaurants",
"version": "1.0.0",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "7.1.4",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.1.2",
"express": "4.16.2",
"google-maps": "3.2.1",
"google-maps-react": "2.0.2",
"google-places-autocomplete-service": "^0.0.3",
"jsdom": "11.7.0",
"lodash": "4.17.5",
"material-icons": "0.2.1",
"materialize-css": "^1.0.0-beta",
"nullthrows": "1.0.1",
"react": "16.3.0",
"react-addons-test-utils": "15.6.2",
"react-dom": "16.3.0",
"react-google-maps": "9.4.5",
"react-places-autocomplete": "^6.1.3",
"react-redux": "5.0.7",
"react-stable-uniqueid": "1.1.1",
"redux": "3.7.2",
"redux-form": "7.3.0",
"redux-mock-store": "1.5.1",
"redux-testkit": "1.0.6",
"redux-thunk": "2.2.0",
"sinon": "4.5.0",
"webpack": "3.10.0"
},
"scripts": {
"build": "./node_modules/.bin/webpack",
"build:prod": "./node_modules/.bin/webpack -p",
"watch": "./node_modules/.bin/webpack --watch",
"flow": "flow",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint 'src/**/*.js'",
"server": "node src/server/main.js",
"start": "node src/server/main.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"setupFiles": [
"./jestSetup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.2.2",
"babel-jest": "^22.4.3",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.3",
"eslint": "4.19.1",
"eslint-config-fbjs": "2.0.1",
"eslint-plugin-babel": "5.0.0",
"eslint-plugin-flowtype": "2.46.1",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"eslint-plugin-relay": "0.0.21",
"flow-bin": "0.69.0",
"googlemaps-js-api-stub": "^0.1.0",
"jest": "22.4.3",
"prettier": "1.11.1",
"react-test-renderer": "16.3.0",
"regenerator-runtime": "^0.11.1"
}
}