-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 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
{
"name": "climbplan",
"version": "1.0.0",
"description": "Climb planning helper tool.",
"main": "app/index.js",
"scripts": {
"test": "./node_modules/karma/bin/karma start conf/karma.conf.js --single-run",
"test:watch": "./node_modules/karma/bin/karma start conf/karma.conf.js",
"test:coverage": "./node_modules/karma/bin/karma start conf/karma.coverage.conf.js --single-run",
"test:ci": "./node_modules/karma/bin/karma start conf/karma.ci.conf.js --single-run",
"start": "./node_modules/.bin/webpack-dev-server --config conf/webpack.config.js --hot --progress --colors --inline --content-base ./build --history-api-fallback",
"build": "./node_modules/.bin/webpack --config conf/webpack.production.js",
"build:gh": "npm run build && node ./build-gh-pages.js"
},
"author": "thatneat@github",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/thatneat/climbplan"
},
"dependencies": {
"history": "^1.17.0",
"lodash": "^4.17.15",
"react": "^15.0.0",
"react-autocomplete": "^1.3.1",
"react-dom": "^15.0.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"whatwg-fetch": "^0.11.0"
},
"devDependencies": {
"autoprefixer-loader": "^2.0.0",
"babel": "^5.1.10",
"babel-core": "^6.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"chai": "^4.0.2",
"css-loader": "^0.23.1",
"eslint": "^3.4.0",
"eslint-plugin-react": "^6.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.1",
"gh-pages": "^0.2.0",
"google-maps": "^3.0.0",
"html-webpack-plugin": "^2.22.0",
"json-loader": "^0.5.3",
"karma": "^0.12.31",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.2.7",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^1.0.2",
"karma-notify-reporter": "^0.1.1",
"karma-phantomjs-launcher": "^0.1.4",
"karma-webpack": "^1.5.0",
"lodash": "^4.17.15",
"mocha": "^3.4.2",
"node-sass": "^3.4.2",
"react-hot-loader": "^1.2.3",
"react-router": "1.x",
"react-tooltip": "^3.0.8",
"sass-loader": "^3.2.3",
"style-loader": "^0.12.0",
"url-loader": "^0.5.5",
"webpack": "^1.9.0",
"webpack-dev-server": "^1.9.0"
}
}