forked from queerviolet/bones
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.38 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.38 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
{
"name": "justhome",
"version": "0.0.1",
"description": "Urban living. Simplified",
"main": "index.js",
"engines": {
"node": "6.9.x"
},
"scripts": {
"start": "bin/setup && node server/start.js",
"dev": "check-node-version --node '>= 6.7.0' && bin/setup && nodemon server/start.js",
"test": "check-node-version --node '>= 6.7.0' && bin/setup && mocha --compilers js:babel-register tests/{*,**/*}.test.js",
"test-watch": "check-node-version --node '>= 6.7.0' && bin/setup && mocha --compilers js:babel-register --watch tests/{*,**/*}.test.js",
"build": "check-node-version --node '>= 6.7.0' && bin/setup && webpack",
"build-watch": "check-node-version --node '>= 6.7.0' && bin/setup && webpack -w --progress",
"seed": "node db/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakepeyser/JustHome.git"
},
"keywords": [
"react",
"redux",
"express",
"sequelize",
"postgresql",
"e-commerce",
"furniture"
],
"bugs": {
"url": "https://github.com/jakepeyser/JustHome/issues"
},
"homepage": "https://github.com/jakepeyser/JustHome#readme",
"dependencies": {
"axios": "^0.15.2",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.7",
"chalk": "^1.1.3",
"chance": "^1.0.4",
"check-node-version": "^1.1.2",
"epilogue": "^0.7.0",
"express": "^4.14.0",
"express-session": "^1.14.2",
"material-ui": "^0.16.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg": "^6.1.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"sendgrid": "^4.7.1",
"sequelize": "^3.24.6"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.2",
"chai-properties": "^1.2.1",
"chai-things": "^0.2.0",
"dotenv": "^2.0.0",
"enzyme": "^2.5.1",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"sinon": "^1.17.6",
"supertest": "^2.0.1",
"supertest-as-promised": "^4.0.1",
"volleyball": "^1.4.1",
"webpack": "^1.13.3"
}
}