Skip to content
This repository was archived by the owner on Jun 25, 2024. It is now read-only.

Commit 6e94e20

Browse files
author
June Domingo
committed
initial commit
0 parents  commit 6e94e20

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+3447
-0
lines changed

.babelrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"presets": ["react", "es2015"],
3+
"env": {
4+
"development": {
5+
"presets": ["react-hmre"]
6+
}
7+
}
8+
}

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = tabs
6+
indent_size = 4
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
API_URL=http://localhost:3006

.eslintrc

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{
2+
"extends": [
3+
"eslint:recommended",
4+
"plugin:import/errors",
5+
"plugin:import/warnings"
6+
],
7+
"plugins": [
8+
"react"
9+
],
10+
"parserOptions": {
11+
"ecmaVersion": 6,
12+
"sourceType": "module",
13+
"ecmaFeatures": {
14+
"jsx": true
15+
}
16+
},
17+
"env": {
18+
"es6": true,
19+
"browser": true,
20+
"node": true,
21+
"jquery": true,
22+
"mocha": true
23+
},
24+
"rules": {
25+
"quotes": 0,
26+
"no-console": 1,
27+
"no-debugger": 1,
28+
"no-var": 1,
29+
"semi": [1, "always"],
30+
"no-trailing-spaces": 0,
31+
"eol-last": 0,
32+
"no-unused-vars": 0,
33+
"no-underscore-dangle": 0,
34+
"no-alert": 0,
35+
"no-lone-blocks": 0,
36+
"jsx-quotes": 1,
37+
"react/display-name": [ 1, {"ignoreTranspilerName": false }],
38+
"react/forbid-prop-types": [1, {"forbid": ["any"]}],
39+
"react/jsx-boolean-value": 1,
40+
"react/jsx-closing-bracket-location": 0,
41+
"react/jsx-curly-spacing": 1,
42+
"react/jsx-indent-props": 0,
43+
"react/jsx-key": 1,
44+
"react/jsx-max-props-per-line": 0,
45+
"react/jsx-no-bind": 1,
46+
"react/jsx-no-duplicate-props": 1,
47+
"react/jsx-no-literals": 0,
48+
"react/jsx-no-undef": 1,
49+
"react/jsx-pascal-case": 1,
50+
"react/jsx-sort-prop-types": 0,
51+
"react/jsx-sort-props": 0,
52+
"react/jsx-uses-react": 1,
53+
"react/jsx-uses-vars": 1,
54+
"react/no-danger": 1,
55+
"react/no-did-mount-set-state": 1,
56+
"react/no-did-update-set-state": 1,
57+
"react/no-direct-mutation-state": 1,
58+
"react/no-multi-comp": 1,
59+
"react/no-set-state": 0,
60+
"react/no-unknown-property": 1,
61+
"react/prefer-es6-class": 1,
62+
"react/prop-types": 1,
63+
"react/react-in-jsx-scope": 1,
64+
"react/require-extension": 1,
65+
"react/self-closing-comp": 1,
66+
"react/sort-comp": 1,
67+
"react/wrap-multilines": 1
68+
}
69+
}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
npm-debug.log
2+
node_modules
3+
dist

package.json

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
{
2+
"name": "react-starter-kit",
3+
"version": "1.0.0",
4+
"description": "Starter kit for React and Redux",
5+
"scripts": {
6+
"prestart": "babel-node utils/startMessage.js",
7+
"start": "npm-run-all --parallel open:src lint:watch",
8+
"open:src": "babel-node utils/srcServer.js",
9+
"lint": "node_modules/.bin/esw webpack.config.* src tools",
10+
"lint:watch": "npm run lint -- --watch",
11+
"clean-dist": "npm run remove-dist && mkdir dist",
12+
"remove-dist": "node_modules/.bin/rimraf ./dist",
13+
"build:html": "babel-node utils/buildHtml.js",
14+
"prebuild": "npm-run-all clean-dist lint build:html",
15+
"build": "babel-node utils/build.js",
16+
"postbuild": "babel-node utils/distServer.js"
17+
},
18+
"author": "June Domingo",
19+
"license": "MIT",
20+
"dependencies": {
21+
"axios": "^0.12.0",
22+
"babel-polyfill": "6.8.0",
23+
"bootstrap": "^4.0.0-alpha.2",
24+
"dotenv": "^2.0.0",
25+
"jquery": "^3.0.0",
26+
"react": "15.0.2",
27+
"react-dom": "15.0.2",
28+
"react-redux": "4.4.5",
29+
"react-router": "2.4.0",
30+
"react-router-redux": "4.0.4",
31+
"redux": "3.5.2",
32+
"redux-thunk": "2.0.1",
33+
"toastr": "2.1.2"
34+
},
35+
"devDependencies": {
36+
"babel-cli": "6.8.0",
37+
"babel-core": "6.8.0",
38+
"babel-loader": "6.2.4",
39+
"babel-plugin-react-display-name": "2.0.0",
40+
"babel-preset-es2015": "6.6.0",
41+
"babel-preset-react": "6.5.0",
42+
"babel-preset-react-hmre": "1.1.1",
43+
"babel-register": "6.8.0",
44+
"colors": "1.1.2",
45+
"compression": "^1.6.1",
46+
"cross-env": "1.0.7",
47+
"css-loader": "0.23.1",
48+
"enzyme": "2.2.0",
49+
"eslint": "2.9.0",
50+
"eslint-plugin-import": "1.6.1",
51+
"eslint-plugin-react": "5.0.1",
52+
"eslint-watch": "2.1.11",
53+
"eventsource-polyfill": "0.9.6",
54+
"expect": "1.19.0",
55+
"express": "4.13.4",
56+
"extract-text-webpack-plugin": "1.0.1",
57+
"file-loader": "0.8.5",
58+
"jsdom": "8.5.0",
59+
"mocha": "2.4.5",
60+
"nock": "8.0.0",
61+
"npm-run-all": "1.8.0",
62+
"open": "0.0.5",
63+
"react-addons-test-utils": "15.0.2",
64+
"redux-immutable-state-invariant": "1.2.3",
65+
"redux-logger": "^2.6.1",
66+
"redux-mock-store": "1.0.2",
67+
"rimraf": "2.5.2",
68+
"style-loader": "0.13.1",
69+
"stylus": "^0.54.5",
70+
"stylus-loader": "^2.1.1",
71+
"url-loader": "0.5.7",
72+
"webpack": "1.13.0",
73+
"webpack-dev-middleware": "1.6.1",
74+
"webpack-hot-middleware": "2.10.0"
75+
},
76+
"repository": {
77+
"type": "git",
78+
"url": ""
79+
}
80+
}
84.9 KB
Binary file not shown.
79.1 KB
Binary file not shown.

src/assets/img/noodlesnotfound.jpg

162 KB
Loading

src/assets/lib/ionicons/css/ionicons.min.css

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)