This repository was archived by the owner on Nov 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 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
{
"name": "rsvp",
"version": "1.0.0",
"description": "RSVP to one of our events",
"index": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack.dev.config.js --hot --port 3000",
"build": "webpack -p --define process.env.NODE_ENV='\"production\"' --config webpack.prod.config.js --progress --colors",
"serve": "python -m SimpleHTTPServer 3000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TechAtNYU/rsvp.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TechAtNYU/rsvp/issues"
},
"homepage": "https://github.com/TechAtNYU/rsvp#readme",
"devDependencies": {
"babel-core": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"jsx-loader": "^0.13.2",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"watchify": "^3.6.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"fuzzy": "^0.1.1",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.4",
"moment": "^2.13.0",
"moment-timezone": "^0.5.3",
"react-redux": "^4.4.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0"
}
}