-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
113 lines (113 loc) · 3.71 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "gb-sample-react-app",
"version": "1.0.0",
"description": "Gone Busy Sample Booking React App",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js --ext .jsx $npm_package_config_lintables",
"lint:fix": "yarn run lint -- --fix",
"test": "yarn run lint && yarn run test:unit",
"test:unit": "env NODE_ENV=test karma start karma.conf.js",
"test:unit:watch": "yarn test:unit -- --single-run=false --reporters=mocha,notify",
"watch": "yarn test:unit:watch",
"dev-start": "NODE_ENV=development node ./server & webpack-dev-server --progress --profile --colors",
"build": "NODE_ENV=production webpack --progress --profile --colors",
"start": "yarn run build & NODE_ENV=production node ./server",
"setup": "node ./setup"
},
"config": {
"lintables": "src lib webpack.config.js karma.conf.js"
},
"dependencies": {
"babel-runtime": "^6.3.19",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"brfs": "^1.4.1",
"css-raw-loader": "^0.1.1",
"dateformat": "^2.0.0",
"dotenv": "^4.0.0",
"gonebusy-nodejs-client": "0.2.0",
"halogen": "^0.2.0",
"json-loader": "^0.5.4",
"lodash.find": "^4.6.0",
"lodash.get": "^4.4.2",
"moment": "^2.17.1",
"react": "^15.4.2",
"react-day-picker": "^5.2.0",
"react-dom": "^15.4.2",
"react-motion": "^0.5.0",
"react-navigation-controller": "^3.0.2",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-router-transition": "^0.1.1",
"redux": "^3.5.2",
"redux-thunk": "^2.0.1",
"sass-loader": "^4.0.2",
"superagent": "^3.5.2",
"superagent-bluebird-promise": "^4.2.0",
"transform-loader": "^0.2.3"
},
"devDependencies": {
"babel-core": "^6.3.21",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2017": "^6.22.0",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.5.0",
"chai-jsx": "^1.0.1",
"css-loader": "0.25.0",
"dirty-chai": "^1.2.2",
"eslint": "^3.15.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": "~4.13.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "0.9.0",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^2.22.0",
"imports-loader": "^0.7.1",
"jsx-chai": "^4.0.0",
"karma": "^1.4.1",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-notify-reporter": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-phantomjs-shim": "^1.4.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"node-sass": "^3.7.0",
"postcss-loader": "^1.0.0",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-shallow-testutils": "^2.0.0",
"render-shallow": "^1.0.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"uuid": "^3.2.1",
"webpack": "^1.13.1",
"webpack-cleanup-plugin": "^0.4.1",
"webpack-dev-server": "^1.12.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gonebusy/sample-react-app.git"
},
"author": "Richard Lehmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/gonebusy/sample-react-app/issues"
},
"homepage": "https://github.com/gonebusy/sample-react-app#readme"
}