-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.52 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
{
"name": "reddit-pwa",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node scripts/server.js",
"watch": "cross-env NODE_ENV=development webpack -w --config scripts/webpack.config.dev.js",
"clean": "rimraf public/scripts",
"build:dev": "npm run clean && cross-env NODE_ENV=development webpack -p --config scripts/webpack.config.dev.js",
"build:pro": "npm run clean && cross-env NODE_ENV=production webpack -p --config scripts/webpack.config.pro.js"
},
"repository": "https://github.com/dhruv-kumar-jha/reddit-pwa.git",
"author": "Dhruv Kumar Jha <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-import": "^1.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.5.1",
"babel-preset-react": "^6.24.1",
"compression-webpack-plugin": "^0.4.0",
"cross-env": "^5.0.0",
"css-loader": "^0.28.3",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"express": "^4.15.3",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"inline-manifest-webpack-plugin": "^3.0.1",
"localforage": "^1.5.0",
"lodash": "^4.17.4",
"material-ui": "^0.18.1",
"offline-plugin": "^4.8.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-tap-event-plugin": "^2.0.1",
"rimraf": "^2.6.1",
"webpack": "^2.6.1"
}
}