-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.94 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
{
"name": "marvelapp",
"version": "1.0.0",
"description": "Marvel challenge",
"main": "index.js",
"scripts": {
"lint": "eslint source/react/",
"stylus": "stylus -u nib -c --include-css source/styles/app.styl -o public/css",
"stylus:watch": "stylus -u nib -c -w --include-css source/styles/app.styl -o public/css",
"build": "npm run lint && NODE_ENV=production browserify -t babelify -g uglifyify source/react/index.js > public/js/bundle.js",
"build:watch": "npm run lint && watchify -t babelify source/react/index.js -o public/js/bundle.js -v --debug",
"cp-files": "cp source/*.html public && cp -r source/assets/ public",
"public": "mkdir -p public public/css public/js && npm run stylus && npm run build && npm run cp-files",
"server": "browser-sync start --config bs-config.js",
"predeploy": "npm run public",
"deploy": "firebase deploy",
"start": "npm run public && npm run server"
},
"author": "Luis Lacruz <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babelify": "^7.3.0",
"browser-sync": "^2.18.8",
"browserify": "^14.1.0",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-config-standard-react": "^4.3.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^2.1.1",
"nib": "^1.1.2",
"normalize.styl": "^3.0.3",
"stylus": "^0.54.5",
"uglifyify": "^3.0.4",
"watchify": "^3.9.0"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-js-pagination": "^2.0.2",
"react-router-dom": "^4.0.0",
"react-text-truncate": "^0.8.3",
"sweetalert": "^1.1.3"
}
}