-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
111 lines (111 loc) · 3.37 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
{
"name": "SoundPlace",
"description": "SoundPlace",
"version": "0.0.1",
"author": "tsirlucas",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"apollo-cache-inmemory": "1.2.7",
"apollo-cache-persist": "0.1.1",
"apollo-client": "2.3.8",
"apollo-link": "1.2.2",
"apollo-link-retry": "2.2.4",
"apollo-link-ws": "1.0.8",
"graphql": "0.13.2",
"graphql-tag": "2.9.2",
"history": "4.7.2",
"localforage": "1.5.7",
"normalize.css": "8.0.0",
"query-string": "5.1.1",
"raven-for-redux": "1.1.1",
"raven-js": "3.26.4",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"react-router-dom": "4.3.1",
"redux": "3.7.2",
"redux-act": "1.7.4",
"redux-observable": "1.0.0",
"rxjs": "6.2.2",
"subscriptions-transport-ws": "0.9.14",
"workbox-webpack-plugin": "https://github.com/tsirlucas/workbox.git#workbox-webpack-plugin-temporary"
},
"devDependencies": {
"@types/js-cookie": "2.1.0",
"@types/node": "10.5.8",
"@types/react": "^16.4.16",
"@types/react-dom": "^16.0.9",
"@types/react-redux": "^6.0.9",
"@types/react-router-dom": "^4.3.1",
"@types/wicg-mediasession": "1.0.2",
"awesome-typescript-loader": "5.2.0",
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-env": "1.7.0",
"brotli-webpack-plugin": "1.0.0",
"browser-sync": "2.24.6",
"browser-sync-webpack-plugin": "2.2.2",
"bundlesize": "0.17.0",
"cname-webpack-plugin": "1.0.3",
"copy-webpack-plugin": "4.5.2",
"cross-env": "5.2.0",
"css-loader": "1.0.0",
"dotenv-webpack": "1.5.7",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"gh-pages": "1.2.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "3.2.0",
"lighthouse-ci": "https://github.com/ebidel/lighthouse-ci",
"node-sass": "4.9.3",
"now": "11.3.8",
"postcss": "7.0.2",
"postcss-loader": "3.0.0",
"postcss-preset-env": "5.3.0",
"react-hot-loader": "4.3.4",
"sass-loader": "7.1.0",
"script-ext-html-webpack-plugin": "2.0.1",
"style-loader": "0.22.1",
"tslint": "5.10.0",
"tslint-config-prettier": "1.14.0",
"tslint-react": "3.6.0",
"typescript": "3.0.1",
"uglifyjs-webpack-plugin": "1.2.7",
"utility-types": "2.0.0",
"webpack": "4.16.5",
"webpack-bundle-analyzer": "2.13.1",
"webpack-cli": "3.1.0",
"webpack-dashboard": "2.0.0",
"webpack-dev-server": "3.1.5",
"webpack-manifest-plugin": "2.0.3"
},
"keywords": [
"react",
"redux",
"sass",
"yarn"
],
"main": "index.js",
"bundlesize": [
{
"path": "build/index.html.br",
"maxSize": "100 kB"
}
],
"scripts": {
"prebuild": "rm -rf build mkdirp build",
"build": "cross-env NODE_ENV=production webpack --mode production",
"analyzer": "cross-env NODE_ENV=production ANALYZER=true webpack --mode production",
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"dev": "webpack-dashboard -- cross-env NODE_ENV=development webpack-dev-server --hot --mode development",
"lint": "tslint --project .",
"bundlesize": "bundlesize",
"staging": "now --alias stg-soundplace --public deploy build/"
}
}