-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.26 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
{
"name": "climb-shopper",
"version": "0.0.1",
"description": "A happy little skeleton.",
"main": "index.js",
"engines": {
"node": ">= 7.0.0"
},
"scripts": {
"dev": "node dev",
"validate": "check-node-version --node '>= 7.0.0'",
"setup": "./bin/setup",
"prep": "npm run validate && npm run setup",
"postinstall": "npm run prep",
"build": "webpack",
"build-watch": "npm run build -- -w",
"build-dev": "cross-env NODE_ENV=development npm run build-watch",
"build-branch": "bin/build-branch.sh",
"start": "node server/start.js",
"start-watch": "nodemon server/start.js --watch server --watch db --watch index.js --watch package.json",
"start-dev": "cross-env NODE_ENV=development npm run start-watch",
"test": "mocha --compilers js:babel-register --watch-extensions js,jsx tests/**/*.test.js tests/**/*.test.jsx",
"test-watch": "npm run test -- --watch --reporter=min",
"seed": "node db/seed.js",
"deploy-heroku": "bin/deploy-heroku.sh",
"lint": "esw . --ignore-path .gitignore --ext '.js,.jsx'",
"lint-watch": "npm run lint -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/queerviolet/bones.git"
},
"keywords": [
"react",
"redux",
"skeleton"
],
"author": "Ashi Krishnan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/queerviolet/bones/issues"
},
"homepage": "https://github.com/queerviolet/bones#readme",
"dependencies": {
"axios": "^0.15.2",
"babel-preset-stage-2": "^6.18.0",
"bcryptjs": "^2.4.0",
"body-parser": "^1.15.2",
"chai-enzyme": "^0.5.2",
"chalk": "^1.1.3",
"check-node-version": "^1.1.2",
"concurrently": "^3.1.0",
"cookie-session": "^2.0.0-alpha.1",
"enzyme": "^2.5.1",
"express": "^4.14.0",
"finalhandler": "^1.0.0",
"font-awesome": "^4.7.0",
"grid-styled": "^2.0.0-10",
"homedir": "^0.6.0",
"materialize-css": "^0.98.2",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-github2": "^0.1.10",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"pg": "^6.1.0",
"pretty-error": "^2.0.2",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-fontawesome": "^1.6.1",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.0",
"redux-logger": "^2.7.0",
"redux-thunk": "^2.1.0",
"sequelize": "^3.24.6",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"styled-components": "^2.1.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.0",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"cross-env": "^3.1.4",
"dateformat": "^2.0.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"eslint-watch": "^3.1.0",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"supertest": "^3.0.0",
"volleyball": "^1.4.1",
"webpack": "^2.2.1",
"webpack-livereload-plugin": "^0.10.0"
}
}