-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "webpack-config-sandbox",
"version": "1.0.0",
"description": "webpack config",
"main": "index.js",
"scripts": {
"dev": "webpack -d --watch",
"serv": "webpack-dev-server",
"prod": "npm run clean && webpack -p",
"clean": "rimraf ./dist/*"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/upco_re/webpack.git"
},
"keywords": [
"webpack",
"config"
],
"author": "Radomir Skrzepij",
"license": "ISC",
"homepage": "https://bitbucket.org/upco_re/webpack#readme",
"devDependencies": {
"@types/jquery": "^3.2.12",
"@types/node": "^8.0.19",
"@types/react": "^16.0.5",
"@types/react-dom": "^15.5.4",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.28.0",
"image-webpack-loader": "^3.3.1",
"node-sass": "^4.5.0",
"postcss-loader": "^2.0.5",
"pug": "^2.0.0-rc.1",
"pug-loader": "https://github.com/pugjs/pug-loader",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.18.2",
"ts-loader": "^2.3.2",
"typescript": "^2.4.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"bootstrap-sass": "^3.3.7",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}