-
Notifications
You must be signed in to change notification settings - Fork 46
/
app.json
21 lines (21 loc) · 804 Bytes
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "Redux Auth Kitchen Sink",
"description": "Full authentication demo with all themes, heroku deployment, isomorphic rendering + routing, & HMR dev server.",
"repository": "https://github.com/lynndylanhurley/redux-auth-demo",
"logo": "https://github.com/lynndylanhurley/redux-auth/raw/master/docs/images/redux-auth-logo.gif",
"keywords": ["node", "redux", "auth", "react", "token", "authentication", "user"],
"env": {
"NODE_ENV": {
"description": "Disable debug + hot reload for production.",
"value": "production"
},
"NODE_PATH": {
"description": "The root for absolute import statements.",
"value": "./src"
},
"NPM_CONFIG_PRODUCTION": {
"description": "Allow webpack to run the build on deploy.",
"value": "false"
}
}
}