-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.67 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
{
"name": "fed-at-ibm",
"version": "1.0.0",
"description": "Public home for IBM’s front-end development community.",
"main": "index.js",
"engines": {
"node": ">=8.11.3"
},
"dependencies": {
"@ibm/plex": "^1.2.1",
"@zeit/next-css": "^1.0.1",
"apicache": "^1.2.3",
"compression": "^1.7.3",
"contentful": "^7.0.5",
"express": "^4.16.4",
"file-loader": "^2.0.0",
"geopattern": "^1.2.3",
"grid-wiz": "1.0.0",
"isomorphic-unfetch": "^3.0.0",
"next": "^7.0.2",
"next-offline": "^3.0.4",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-markdown": "^4.0.3",
"styled-components": "^4.0.3",
"url-loader": "^1.1.2"
},
"devDependencies": {
"nodemon": "^1.18.9"
},
"repository": {
"type": "git",
"url": "[email protected]:ibm-frontend/fed-at-ibm.git"
},
"scripts": {
"build": "next build",
"cloud:login": "cf login -a api.ng.bluemix.net -o IBMDesignOrg -s fed-dallas",
"cloud:push": "cf push -f manifest-staging.yml && cf delete fed-at-ibm-staging -f && cf rename fed-at-ibm-staging-new fed-at-ibm-staging",
"cloud:push:prod": "cf push -f manifest-prod.yml && cf delete fed-at-ibm -f && cf rename fed-at-ibm-new fed-at-ibm",
"deploy": "npm run build && npm run cloud:login && npm run cloud:push",
"deploy:prod": "npm run build && npm run cloud:login && npm run cloud:push:prod",
"dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 nodemon -w server/**/* server/index.js",
"start": "npm run dev",
"start:prod": "NODE_ENV=production node server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "UNLICENSED"
}