-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 4.08 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
114
115
116
117
118
119
120
{
"name": "tilapankki",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://github.com/City-of-Helsinki/tilapankki.git"
},
"main": "server/index.js",
"homepage": "https://varaamo.hel.fi/",
"description": "User interface for the City of Helsinki Stadin Tilapankki resource reservation service",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"dependencies": {
"classnames": "^2.2.0",
"hash-file": "^2.1.0",
"history": "^1.13.1",
"humps": "^1.0.0",
"isomorphic-fetch": "^2.2.0",
"leaflet": "^0.7.7",
"location-origin": "^1.1.4",
"lodash": "^3.10.1",
"moment": "^2.10.3",
"moment-range": "^2.0.3",
"nconf": "^0.8.2",
"normalizr": "^1.4.0",
"passport": "^0.2.2",
"passport-helsinki": "git://github.com/City-of-Helsinki/passport-helsinki.git",
"query-string": "^3.0.0",
"react": "^0.14.2",
"react-autolink-text": "git://github.com/joshparolin/react-autolink-text.git#npm-temp-fix",
"react-bootstrap": "^0.28.1",
"react-date-picker": "^3.1.8",
"react-document-title": "^2.0.1",
"react-dom": "^0.14.3",
"react-leaflet": "^0.10.0",
"react-loader": "^2.0.0",
"react-notifications": "^0.1.0",
"react-redux": "^4.0.0",
"react-router": "^1.0.0",
"react-router-bootstrap": "^0.19.3",
"react-select": "^0.9.1",
"react-typeahead": "^1.1.5",
"redux": "^3.0.4",
"redux-actions": "^0.8.0",
"redux-api-middleware": "1.0.0-beta3",
"redux-simple-router": "0.0.10",
"redux-thunk": "^1.0.3",
"reselect": "^2.0.1",
"seamless-immutable": "^4.0.2",
"serialize-javascript": "^1.1.2",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"autoprefixer": "^6.1.1",
"babel-core": "^5.8.34",
"babel-eslint": "^4.1.6",
"babel-loader": "^5.4.0",
"babel-plugin-react-transform": "^1.1.1",
"body-parser": "^1.13.2",
"codecov": "^2.3.0",
"cookie-parser": "^1.3.5",
"cookie-session": "^1.2.0",
"css-loader": "^0.23.0",
"eslint": "^1.10.1",
"eslint-config-airbnb": "^1.0.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.10.0",
"express": "^4.13.1",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^1.7.0",
"isparta": "^3.5.3",
"isparta-instrumenter-loader": "^0.2.3",
"karma": "^0.13.15",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.1",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.2",
"karma-phantomjs2-launcher": "^0.3.2",
"karma-webpack": "^1.7.0",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"mocha": "^2.3.4",
"mockdate": "^1.0.3",
"morgan": "^1.6.1",
"postcss-loader": "^0.8.0",
"react-addons-test-utils": "^0.14.3",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"redux-devtools": "git://github.com/tomatau/redux-devtools.git",
"redux-logger": "^2.0.4",
"rosie": "^1.2.0",
"selenium-standalone": "4.7.2",
"simple-mock": "^0.4.1",
"skin-deep": "^0.13.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.5.0",
"webpack-merge": "^0.3.2"
},
"scripts": {
"start": "node server/index.js",
"start:dev": "TARGET_APP=app CLIENT_ID=cid CLIENT_SECRET=secret SESSION_SECRET=1234 node server/index.js",
"start:production": "NODE_ENV=production node server/index.js",
"build": "./node_modules/.bin/webpack --config config/webpack.production.js",
"test": "npm run lint && ./node_modules/karma/bin/karma start config/karma.conf.js --single-run",
"test:watch": "npm run lint && ./node_modules/karma/bin/karma start config/karma.conf.js",
"test:coverage": "npm run lint && ./node_modules/karma/bin/karma start config/karma.coverage.conf.js --single-run",
"test:ci": "./node_modules/karma/bin/karma start config/karma.ci.conf.js --single-run",
"lint": "./node_modules/.bin/eslint ."
}
}