-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.65 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
{
"name": "catch-of-the-day",
"version": "1.0.0",
"description": "A real-time app for a seafood market with a menu, an order form, and an inventory management area where authorized users can immediately update product details",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/sheafitzek/catch-of-the-day.git"
},
"author": "Shea Fitzek",
"license": "ISC",
"bugs": {
"url": "https://github.com/sheafitzek/catch-of-the-day/issues"
},
"homepage": "https://sheafitzek.github.io/catch-of-the-day/",
"devDependencies": {
"autoprefixer-stylus": "0.10.0",
"babel-eslint": "^7.1.1",
"concurrently": "3.0.0",
"eslint": "^3.12.2",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.8.0",
"gh-pages": "^1.1.0",
"react-scripts": "1.0.0",
"stylus": "0.54.5"
},
"dependencies": {
"history": "4.2.0",
"prop-types": "^15.6.0",
"re-base": "2.2.0",
"react": "15.3.2",
"react-addons-css-transition-group": "15.3.2",
"react-dom": "15.3.2",
"react-router": "4.0.0-alpha.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "npm run build && gh-pages -d build",
"start": "react-scripts start",
"watch": "concurrently --names \"webpack, stylus\" --prefix name \"npm run start\" \"npm run styles:watch\"",
"build": "react-scripts build",
"eject": "react-scripts eject",
"styles": "stylus -u autoprefixer-stylus ./src/css/style.styl -o ./src/css/style.css",
"styles:watch": "stylus -u autoprefixer-stylus -w ./src/css/style.styl -o ./src/css/style.css"
},
"eslintConfig": {
"extends": "./.eslintrc.json"
}
}