forked from hrr16-velociraptors/triceratops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.08 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
{
"name": "triceratops",
"version": "1.0.0",
"description": "You've got stuff that people want. Other people have stuff that you want. Instead of being envious, why not make some extra cash? Share Anything is a community that allows users to easily share anything for a price.",
"scripts": {
"start": "node index.js",
"postinstall": "npm install webpack -g && npm run deploybuild",
"test": "./node_modules/.bin/mocha --reporter spec specs/server/ServerSpec.js;",
"clienttest": "./node_modules/.bin/mocha --compilers js:babel-register --recursive --reporter spec specs/client/ClientSpec.js",
"go": "concurrently \"npm run build\" \"nodemon index.js\"",
"devserver": "webpack-dev-server --content-base build/",
"deploybuild": "webpack --progress --profile --colors --display-error-details --display-cached",
"build": "webpack --progress --profile --colors --display-error-details --display-cached -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HRR16-triceratops/triceratops.git"
},
"keywords": [
"hot-tub-tonight"
],
"author": "Team Triceratops",
"license": "ISC",
"bugs": {
"url": "https://github.com/HRR16-triceratops/triceratops/issues"
},
"homepage": "https://github.com/HRR16-triceratops/triceratops#readme",
"dependencies": {
"axios": "^0.11.1",
"babel-cli": "^6.9.0",
"babel-core": "6.9.0",
"babel-loader": "6.2.4",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"bcrypt": "^0.8.6",
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"bootstrap": "^3.3.6",
"bootstrap-material-design": "^0.5.9",
"concurrently": "^2.1.0",
"cookie-parser": "^1.4.2",
"copy-webpack-plugin": "3.0.0",
"css-loader": "^0.23.1",
"express": "^4.13.4",
"express-jwt": "^3.4.0",
"express-session": "^1.13.0",
"file-loader": "^0.8.5",
"html-webpack-plugin": "2.17.0",
"jsonwebtoken": "^7.0.0",
"material-ui": "^0.15.0",
"mongodb": "^2.1.20",
"mongoose": "^4.4.19",
"mongoose-type-url": "^1.0.2",
"morgan": "^1.7.0",
"react": "15.1.0",
"react-dom": "15.1.0",
"react-facebook-login": "^2.1.4",
"react-google-maps": "^4.11.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "4.0.4",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-form": "^5.2.5",
"redux-logger": "^2.6.1",
"redux-thunk": "2.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^2.11.0",
"eslint-plugin-react": "^5.1.1",
"live-server": "1.0.0",
"lodash": "4.13.1",
"mocha": "^2.5.3",
"nock": "^8.0.0",
"react-hot-loader": "^1.3.0",
"reduce-reducers": "0.1.2",
"redux-devtools": "^3.3.1",
"redux-mock-store": "^1.0.4",
"request": "^2.72.0",
"webpack-dev-server": "^1.14.1"
}
}