-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
126 lines (126 loc) · 3.5 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
126
{
"name": "test_app",
"version": "1.0.0",
"description": "Yet another app",
"main": "build/server.js",
"scripts": {
"precommit": "lint-staged",
"clean": "rimraf public build",
"start": "better-npm-run dev",
"start:prod": "better-npm-run prod",
"lint": "eslint 'src/**' 'webpack/**' --ext .js --cache --fix --ignore-path .eslintignore"
},
"betterScripts": {
"dev": {
"command": "yarn run clean && node src/server/run.js",
"env": {
"NODE_ENV": "development",
"PORT": 8080
}
},
"prod": {
"command": "yarn run clean && node src/server/run.js",
"env": {
"NODE_ENV": "production",
"PORT": 8080
}
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix --ignore-path .eslintignore",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Guru107/test_app.git"
},
"keywords": [
"preact",
"pwa",
"service workers"
],
"author": "Guru107 <guruak107@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Guru107/test_app/issues"
},
"homepage": "https://github.com/Guru107/test_app#readme",
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "8.2.2",
"babel-loader": "7.1.2",
"babel-plugin-dual-import": "1.2.0",
"babel-plugin-dynamic-import-webpack": "1.0.2",
"babel-plugin-dynamic-import-node": "1.2.0",
"babel-plugin-module-resolver": "3.1.0",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.13",
"babel-plugin-transform-runtime": "6.23.0",
"babel-plugin-universal-import": "1.4.0",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "6.24.1",
"better-npm-run": "0.1.0",
"brotli-webpack-plugin": "0.5.0",
"css-loader": "0.28.8",
"copy-webpack-plugin": "4.4.0",
"compression-webpack-plugin": "1.1.4",
"eslint-config-prettier": "2.9.0",
"eslint": "4.17.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "6.0.0",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-react": "7.6.0",
"eslint-plugin-standard": "3.0.1",
"express-static-gzip": "0.3.2",
"extract-css-chunks-webpack-plugin": "2.0.18",
"husky": "0.15.0-rc.2",
"less": "3.0.0",
"less-loader": "4.0.5",
"react-hot-loader": "4.0.0-rc.0",
"postcss-loader": "2.1.0",
"lint-staged": "6.1.0",
"prettier": "1.9.0",
"rimraf": "2.6.2",
"webpack": "3.11.0",
"webpack-bundle-analyzer": "2.10.0",
"uglifyjs-webpack-plugin": "1.1.7",
"style-loader": "0.20.0",
"webpack-dev-middleware": "2.0.5",
"webpack-dev-server": "2.9.6",
"webpack-hot-middleware": "2.21.0",
"webpack-hot-server-middleware": "0.4.0",
"webpack-node-externals": "1.6.0",
"webpack-stats-plugin": "0.1.5",
"workbox-background-sync": "2.0.3",
"workbox-broadcast-cache-update": "2.0.3",
"workbox-cache-expiration": "2.0.3",
"workbox-cacheable-response": "2.0.3",
"workbox-google-analytics": "2.1.1",
"workbox-webpack-plugin": "2.1.2",
"write-file-webpack-plugin": "4.2.0"
},
"dependencies": {
"axios": "0.18.0",
"express": "5.0.0-alpha.6",
"express-no-favicons": "0.0.1",
"history": "4.7.2",
"lodash": "4.17.5",
"material-design-lite": "1.3.0",
"preact-compat": "3.18.0",
"preact": "8.2.7",
"preact-mdl": "2.2.2",
"preact-redux": "2.0.3",
"preact-router": "2.6.0",
"preact-router-redux": "4.1.0",
"prop-types": "15.6.0",
"react-universal-component": "2.8.2",
"redux": "3.7.2",
"redux-thunk": "2.2.0",
"sw-toolbox": "3.6.0",
"webpack-flush-chunks": "1.2.3"
}
}