-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 2.98 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
{
"name": "courtbook",
"version": "0.0.1",
"description": "A UI for manually providing data for courtbot.",
"main": "src/server/www.js",
"style": "dist/css/bootstrap.css",
"scripts": {
"test": "npm run db-migrate && nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test:dev": "npm run db-migrate && mocha --watch",
"dev": "npm run db-migrate && nodemon src/server/www.js --exec babel-node --watch src/server",
"db-migrate": "db-migrate up",
"build": "NODE_ENV=production webpack --config ./webpack.config.js --progress --colors",
"postinstall": "npm run build",
"start": "npm run db-migrate && babel-node src/server/www.js"
},
"author": "Ash Lux (ashlux@gmail.com)",
"license": "MIT",
"engines": {
"node": "6.9.1"
},
"repository": {
"type": "git",
"url": "git@github.com:codefortulsa/courtbook.git"
},
"dependencies": {
"auth0-lock": "^10.7.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"bookshelf": "^0.10.3",
"bootstrap": "^3.3.7",
"chance": "^1.0.4",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.3",
"css-loader": "^0.26.1",
"db-migrate": "^0.10.0-beta.20",
"db-migrate-pg": "^0.1.11",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"express-jwt": "^5.1.0",
"express-session": "^1.14.2",
"file-loader": "^0.9.0",
"jwks-rsa": "^1.1.1",
"jwt-decode": "^2.1.0",
"knex": "^0.12.6",
"le_node": "^1.7.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"lodash": "^4.17.2",
"log4js": "^1.1.0",
"logentries-log4js-appender": "0.0.3",
"logfmt": "^1.2.0",
"moment": "^2.17.1",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"react": "^15.4.1",
"react-bootstrap": "^0.30.7",
"react-datetime": "^2.8.4",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-form": "^6.4.3",
"redux-promise-middleware": "^4.2.0",
"redux-thunk": "^2.1.0",
"revalidate": "^1.1.0",
"sql": "^0.73.0",
"style-loader": "^0.13.1",
"superagent": "^3.3.1",
"superagent-as-promised": "^4.0.0",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.9.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-enzyme": "^0.6.1",
"coveralls": "^2.11.16",
"dirty-chai": "^1.2.2",
"enzyme": "latest",
"istanbul": "^0.4.5",
"jsdom": "^9.11.0",
"mocha": "^3.2.0",
"nock": "^9.0.6",
"nodemon": "^1.11.0",
"nyc": "^10.1.2",
"proxyquire": "^1.7.11",
"react-addons-test-utils": "^15.4.2",
"recompose": "^0.22.0",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0"
}
}