-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 4.39 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "KickstarterStatus",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"install": "jspm install",
"start": "NODE_ENV=production node server",
"start-dev": "jspm bundle src/index.js -wid & node server & chokidar-socket-emitter",
"dist:clear": "rimraf dist && mkdir -p dist",
"dist:sfx": "jspm build src/index.js dist/app.js --minify",
"dist:html": "html-dist index.html --minify --remove-all --insert /app.js -o dist/index.html",
"dist:style": "mkdir -p dist/style && postcss --use postcss-import style/main.css -d dist/style/ && postcss --use autoprefixer dist/style/main.css -d dist/style/",
"dist:audio": "mkdir -p dist/audio && ncp audio dist/audio",
"dist": "npm run dist:clear && npm run dist:sfx && npm run dist:html && npm run dist:style && npm run dist:audio",
"upload": "scp -r dist server package.json $UPLOAD_USER@$UPLOAD_HOST:$UPLOAD_PATH",
"deploy": "npm run dist && npm run upload"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.4.1",
"babel-eslint": "^6.1.2",
"chokidar-socket-emitter": "^0.5.4",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.2",
"html-dist": "^0.1.0",
"jspm": "^0.17.0-beta.28",
"ncp": "^2.0.0",
"postcss": "^5.2.0",
"postcss-cli": "^2.6.0",
"postcss-import": "^8.1.2",
"rimraf": "^2.5.4"
},
"jspm": {
"name": "KickstarterStatus2",
"main": "KickstarterStatus2.js",
"dependencies": {
"currency-formatter": "npm:currency-formatter@^1.0.4",
"moment": "npm:moment@^2.15.0",
"react-loader": "npm:react-loader@^2.4.0",
"react-notification-system": "npm:react-notification-system@^0.2.10",
"systemjs-hot-reloader": "github:capaj/systemjs-hot-reloader@^0.6.0",
"whatwg-fetch": "npm:whatwg-fetch@^1.0.0"
},
"devDependencies": {
"babel-plugin-transform-react-jsx": "npm:babel-plugin-transform-react-jsx@^6.8.0",
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.14"
},
"peerDependencies": {
"assert": "github:jspm/nodelibs-assert@^0.2.0-alpha",
"buffer": "github:jspm/nodelibs-buffer@^0.2.0-alpha",
"child_process": "github:jspm/nodelibs-child_process@^0.2.0-alpha",
"constants": "github:jspm/nodelibs-constants@^0.2.0-alpha",
"crypto": "github:jspm/nodelibs-crypto@^0.2.0-alpha",
"domain": "github:jspm/nodelibs-domain@^0.2.0-alpha",
"events": "github:jspm/nodelibs-events@^0.2.0-alpha",
"fs": "github:jspm/nodelibs-fs@^0.2.0-alpha",
"http": "github:jspm/nodelibs-http@^0.2.0-alpha",
"https": "github:jspm/nodelibs-https@^0.2.0-alpha",
"os": "github:jspm/nodelibs-os@^0.2.0-alpha",
"path": "github:jspm/nodelibs-path@^0.2.0-alpha",
"process": "github:jspm/nodelibs-process@^0.2.0-alpha",
"react": "npm:react@^15.3.1",
"react-dom": "npm:react-dom@^15.3.1",
"stream": "github:jspm/nodelibs-stream@^0.2.0-alpha",
"string_decoder": "github:jspm/nodelibs-string_decoder@^0.2.0-alpha",
"url": "github:jspm/nodelibs-url@^0.2.0-alpha",
"util": "github:jspm/nodelibs-util@^0.2.0-alpha",
"vm": "github:jspm/nodelibs-vm@^0.2.0-alpha",
"zlib": "github:jspm/nodelibs-zlib@^0.2.0-alpha"
},
"overrides": {
"npm:[email protected]": {
"dependencies": {
"readable-stream": "^2.0.2",
"pako": "~0.2.0"
},
"map": {
"_stream_transform": "readable-stream/transform"
}
},
"npm:[email protected]": {
"main": "browser.js",
"jspmNodeConversion": false,
"format": "cjs",
"map": {
"./browser.js": {
"node": "./node.js"
},
"fs": "@node/fs",
"net": "@node/net",
"tty": "@node/tty",
"util": "@node/util"
}
},
"npm:[email protected]": {
"ignore": [
"test.js"
]
},
"npm:[email protected]": {
"map": {
"buffer": "@empty",
"process": "@empty"
}
},
"npm:[email protected]": {
"jspmNodeConversion": false
},
"npm:[email protected]": {
"jspmNodeConversion": false,
"format": "cjs"
}
}
},
"dependencies": {
"express": "^4.14.0",
"node-fetch": "^1.6.1"
}
}