-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.27 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
{
"name": "skill-hub",
"version": "0.1.1",
"description": "A peer to peer skill trading app",
"main": "server/index.js",
"scripts": {
"dev": "nodemon --watch server & webpack --config webpack.dev.config.js --watch",
"debug": "node --inspect --debug-brk server",
"test": "ava -v tests/**/*.test.js",
"eslint": "eslint src test",
"start": "node server",
"test:watch": "ava --watch",
"knex": "knex",
"postinstall": "knex migrate:latest && webpack --config webpack.prod.config.js"
},
"author": "EDA",
"license": "ISC",
"dependencies": {
"auth0-js": "^8.7.0",
"auth0-lock": "^10.17.0",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"body-parser": "^1.16.0",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"connect-session-knex": "^1.3.1",
"dotenv": "^4.0.0",
"eslint": "^3.14.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^2.0.1",
"express": "^4.14.0",
"express-force-ssl": "^0.3.2",
"express-handlebars": "^3.0.0",
"express-jwt": "^5.1.0",
"express-session": "^1.15.0",
"jsonwebtoken": "^7.4.1",
"jwt-decode": "^2.2.0",
"knex": "^0.12.6",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg": "^6.2.4",
"react": "^15.3.0",
"react-bootstrap-typeahead": "^1.4.0",
"react-dom": "^15.3.0",
"react-dropzone": "^3.13.2",
"react-redux": "^4.4.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.5.2",
"redux-thunk": "^2.2.0",
"superagent": "^3.5.2",
"webpack": "^2.6.1"
},
"devDependencies": {
"ava": "^0.17.0",
"jsdom": "^11.0.0",
"nodemon": "^1.11.0",
"sqlite3": "^3.1.8",
"supertest": "^2.0.1",
"webpack-dev-server": "^2.4.5",
"webpack-livereload-plugin": "^0.11.0"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-3"
]
},
"ava": {
"babel": "inherit",
"require": "babel-register"
},
"engines": {
"node": ">=7.0.0"
}
}