-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.38 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
{
"name": "maps",
"version": "0.0.1",
"description": "basic maps app using React and Graph QL",
"main": "./src/index.js",
"scripts": {
"start": "babel-node ./server.js",
"production": "NODE_ENV=production & npm start",
"test": "jest --config jest.config.js --forceExit",
"test:watch": "npm test -- --watch",
"test:update": "npm test -- --updateSnapshot",
"lint": "./node_modules/.bin/eslint --ignore-pattern test.* ./src ",
"relay":
"relay-compiler --src ./src --schema ./data/schema.graphql --extensions jsx",
"update-schema": "babel-node ./data/updateSchema.js",
"pretty": "pretty-quick",
"precommit": "pretty-quick --staged && npm run lint && npm test"
},
"author": "liminal18",
"license": "ISC",
"dependencies": {
"aphrodite": "^2.1.0",
"es6-promise": "^4.1.0",
"graphql": "^0.13.2",
"graphql-relay": "^0.5.5",
"isomorphic-fetch":
"https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
"lodash": "^4.17.15",
"mapbox-gl": "^0.43.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-relay": "^1.5.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.1",
"babel-loader": "^7.0.0",
"babel-plugin-relay": "^1.0.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"compress": "^0.99.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"express-graphql": "^0.6.12",
"file-loader": "^0.11.2",
"helmet": "^3.6.0",
"husky": "^0.14.3",
"jest": "^22.4.2",
"jsdom": "^11.6.2",
"json-loader":
"https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz",
"mongodb": "^3.0.1",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1",
"puppeteer": "^1.2.0",
"react-test-renderer": "^16.2.0",
"relay-compiler": "^1.5.0",
"require-clean": "^0.1.3",
"soundex": "^0.2.1",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5",
"webpack-node-externals": "^1.6.0"
},
"jest": {
"setupFiles": ["<rootDir>/jestSetup.js"]
}
}