-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.65 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.65 KB
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
{
"name": "escape-hatch",
"version": "1.0.0",
"description": "Ultimate error solution finder!",
"main": "index.js",
"engines": {
"node": ">= 7.0.0"
},
"scripts": {
"start": "webpack -w & nodemon server",
"start-server": "nodemon server",
"build-client": "webpack",
"test": "DATABASE_URL='postgres://localhost:5432/escapehatch-test' mocha ./**/*.spec.js --compilers js:babel-register --require babel-polyfill ./client/components/test_helper.js --watch-extensions js,jsx",
"seed": "node seed.js",
"lint": "eslint **/*.js --ignore-pattern node_modules/",
"postinstall": "webpack"
},
"keywords": [
"error handling",
"npm",
"library",
"node",
"react",
"redux"
],
"repository": {
"type": "git",
"url": "git+https://github.com/escape-hatch/escapehatch"
},
"author": "Jennifer Tam <jennifer.k.tam@gmail.com>, Cindy Schalit <cindyschalit@gmail.com>, Alice Perez <aliceperez25@gmail.com>, Josh White <whitejosh42@gmail.com>",
"license": "ISC",
"dependencies": {
"axios": "^0.15.3",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"base64-url": "^1.3.3",
"bluebird": "^3.5.0",
"body-parser": "^1.16.1",
"bootstrap": "^3.3.7",
"bootstrap-social": "^5.1.1",
"connect-session-sequelize": "^4.1.0",
"css-loader": "^0.26.1",
"express": "^4.14.1",
"express-session": "^1.15.1",
"font-awesome": "^4.7.0",
"he": "^1.1.1",
"jquery": "^3.2.1",
"morgan": "^1.8.1",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"octonode": "^0.7.13",
"passport": "^0.3.2",
"passport-github2": "^0.1.10",
"passport-google-oauth": "^1.0.0",
"passport-stackexchange": "^0.1.2",
"path": "^0.12.7",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"redux-logger": "^2.8.1",
"redux-thunk": "^2.2.0",
"sanitize-html": "^1.14.1",
"sass-loader": "^6.0.0",
"sequelize": "^3.30.2",
"showdown": "^1.7.1",
"style-loader": "^0.13.1",
"webpack": "^2.2.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"chai": "^3.5.0",
"enzyme": "^2.8.2",
"eslint": "^4.1.1",
"eslint-config-fullstack": "^3.0.0",
"eslint-plugin-react": "^7.1.0",
"jsdom": "^11.0.0",
"mocha": "^3.3.0",
"react-addons-test-utils": "^15.6.0",
"sinon": "^2.3.6",
"supertest": "^3.0.0"
}
}