-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.12 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": "go-outside",
"version": "0.0.1",
"description": "A small app to preserve your sanity during the workday.",
"main": "index.js",
"scripts": {
"build": "node utils/build.js",
"start": "node utils/webserver.js",
"test": "mocha tests/**/*.js --compilers js:babel-register",
"seed": "node seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgodow/go-outside.git"
},
"author": "Brian Nichols, Milo Kang, Colin Jaffe, and David Godow",
"license": "MIT",
"bugs": {
"url": "https://github.com/dgodow/go-outside/issues"
},
"homepage": "https://github.com/dgodow/go-outside#readme",
"dependencies": {
"axios": "^0.15.3",
"bootstrap": "^3.3.7",
"chrome-promise": "^2.0.2",
"d3-array": "^1.0.2",
"d3-axis": "^1.0.4",
"d3-scale": "^1.0.4",
"d3-selection": "^1.0.3",
"d3-shape": "^1.0.4",
"d3-time-format": "^2.0.3",
"file-loader": "^0.10.0",
"firebase": "^3.6.8",
"font-awesome": "^4.7.0",
"fs-extra": "^0.30.0",
"html-webpack-plugin": "2.24.1",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"node-sass": "^4.5.0",
"react": "^15.3.2",
"react-bootstrap": "^0.30.7",
"react-chrome-redux": "^1.2.0",
"react-dom": "^15.3.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"chai-things": "^0.2.0",
"css-loader": "^0.25.0",
"enzyme": "^2.7.1",
"jsdom": "^9.11.0",
"mocha": "^3.2.0",
"nock": "^9.0.5",
"react-addons-test-utils": "^15.4.2",
"redux-devtools-extension": "^1.0.0",
"redux-logger": "^2.7.4",
"redux-mock-store": "^1.2.2",
"sass-loader": "^4.1.1",
"sinon": "^1.17.7",
"sinon-chrome": "^2.1.3",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "1.14.1",
"write-file-webpack-plugin": "3.4.2"
}
}