Skip to content

Commit 40df6e8

Browse files
committed
[chore] create file structure and dependencies
1 parent 2547e00 commit 40df6e8

File tree

15 files changed

+217
-0
lines changed

15 files changed

+217
-0
lines changed

.babelrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["react", "es2015", "stage-1"]
3+
}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules

.idea/Crowded.iml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

+146
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Whitespace-only changes.

package.json

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "crowded",
3+
"version": "1.0.0",
4+
"description": "Find an open seat in the coffee shop near you",
5+
"main": "index.js",
6+
"directories": {
7+
"test": "tests"
8+
},
9+
"scripts": {
10+
"test": "echo \"Error: no test specified\" && exit 1"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/abe732/Crowded.git"
15+
},
16+
"author": "",
17+
"license": "ISC",
18+
"bugs": {
19+
"url": "https://github.com/abe732/Crowded/issues"
20+
},
21+
"homepage": "https://github.com/abe732/Crowded#readme",
22+
"devDependencies": {
23+
"babel-core": "^6.9.1",
24+
"babel-loader": "^6.2.4",
25+
"babel-preset-es2015": "^6.9.0",
26+
"babel-preset-react": "^6.5.0",
27+
"chai": "^3.5.0",
28+
"chai-jquery": "^2.0.0",
29+
"jquery": "^2.2.4",
30+
"jsdom": "^9.2.1",
31+
"mocha": "^2.5.3",
32+
"react-addons-test-utils": "^15.1.0",
33+
"webpack": "^1.13.1",
34+
"webpack-dev-server": "^1.14.1"
35+
},
36+
"dependencies": {
37+
"babel-preset-stage-1": "^6.5.0",
38+
"lodash": "^4.13.1",
39+
"react": "^15.1.0",
40+
"react-dom": "^15.1.0",
41+
"react-redux": "^2.0.0",
42+
"react-router": "^2.4.1",
43+
"redux": "^2.0.0"
44+
}
45+
}

src/client/actions/index.js

Whitespace-only changes.

src/client/components/app.js

Whitespace-only changes.

src/client/index.js

Whitespace-only changes.

src/client/reducers/index.js

Whitespace-only changes.

src/style/style.css

Whitespace-only changes.

tests/test_helper.js

Whitespace-only changes.

webpack.config.js

Whitespace-only changes.

0 commit comments

Comments
 (0)