-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.78 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
{
"name": "routetogo",
"version": "1.0.0",
"description": "A single-page web app for finding all possible flight routes between two cities",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"postinstall": "webpack -p --config ./webpack.config.prod.js",
"start": "NODE_ENV='production' node server.js",
"test": "mocha --compilers js:babel-register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch"
},
"repository": "https://github.com/muiradams/routetogo",
"author": "Muir Adams",
"license": "GPL-3.0",
"dependencies": {
"apollo-client": "^1.0.0-rc.2",
"babel-loader": "^6.3.2",
"babel-preset-env": "^1.2.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"babel-register": "^6.24.0",
"css-loader": "^0.26.2",
"express": "^4.15.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"postgraphql": "^3.0.1",
"react": "^15.4.2",
"react-apollo": "^1.0.1",
"react-autosuggest": "^9.0.0",
"react-dom": "^15.4.2",
"sass-loader": "^6.0.2",
"style-loader": "^0.16.1",
"webpack": "^2.2.0",
"webpack-dev-middleware": "^1.10.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"enzyme": "^2.7.1",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^6.10.0",
"jsdom": "^9.11.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"react-addons-test-utils": "^15.4.2",
"sinon": "^2.0.0"
}
}