-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.91 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
{
"name": "staytube",
"version": "1.1.0",
"description": "Great full length concerts from YouTube",
"main": "src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/urre/staytube"
},
"scripts": {
"start": "webpack-dev-server --config webpack.config.dev.js",
"build": "rm -rf dist && NODE_ENV=production webpack --config webpack.config.prod.js && npm run build:assets && npm run sitemap",
"build:assets": "cd src && cp -R images ../dist/",
"format:js": "npx prettier --write './src/**/*.js'",
"format:css": "npx stylelint ./src/**/*.css --fix'",
"format": "npm run format:js && npm run format:css",
"sitemap": "cd src && babel-node createsitemap.js",
"deploy": "vercel --prod"
},
"dependencies": {
"axios": "^0.14.0",
"basscss": "^8.0.2",
"node-env-file": "^0.1.8",
"react": "^15.2.0",
"react-dom": "^15.2.0",
"react-ga": "^2.1.2",
"react-helmet": "^3.1.0",
"react-icons": "^2.2.1",
"react-lazyload": "^2.1.6",
"react-router-dom": "^4.1.1",
"react-router-sitemap": "^1.0.8",
"sitemap-generator": "^6.0.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"autoprefixer": "^6.3.6",
"babel-cli": "^6.26.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.24.1",
"basscss-btn": "^1.1.1",
"basscss-btn-outline": "^1.1.0",
"basscss-btn-sizes": "^1.2.0",
"concurrently": "^2.1.0",
"critical": "^1.3.3",
"css-loader": "^0.23.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"eslint-watch": "^2.1.14",
"extract-text-webpack-plugin": "^1.0.1",
"history": "^3.3.0",
"html-minifier-cli": "^0.1.0",
"html-minify-loader": "^1.3.0",
"html-webpack-plugin": "^2.29.0",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.9.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^0.9.1",
"postcss-normalize": "^0.3.0",
"postcss-reporter": "^3.0.0",
"postcss-url": "^5.1.2",
"pre-commit": "^1.1.3",
"precss": "^1.4.0",
"prettier": "2.1.2",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.2.0",
"react-hot-loader": "^1.3.0",
"script-ext-html-webpack-plugin": "^1.8.5",
"style-ext-html-webpack-plugin": "^3.1.1",
"style-loader": "^0.13.1",
"stylelint-webpack-plugin": "^0.5.1",
"tap-spec": "^4.1.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.12.0",
"webpack-merge": "^0.14.0"
}
}