-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.62 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
{
"name": "vanilla-js-boilerplate",
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"dev": "webpack-dev-server .",
"watch": "webpack --watch",
"sass": "sass --watch src/styles/index.scss:public/bundle.css",
"watch:win": "./node_modules/.bin/webpack --watch .",
"build": "rm -rf public && NODE_ENV=production webpack --config config.prod.js",
"build:win": "./node_modules/.bin/webpack .",
"clean": "rm -rf target"
},
"dependencies": {
"bootstrap": "^4.2.1",
"iconfont-webpack-plugin": "^3.1.0",
"jquery": "^3.3.1",
"node-sass": "^4.11.0",
"rxjs": "^6.5.5"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0-beta.51",
"@babel/polyfill": "^7.0.0-beta.52",
"@babel/preset-env": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0-beta.51",
"autoprefixer": "^6.7.7",
"babel-loader": "^8.0.0",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"css-loader": "^0.26.1",
"css-mqpacker": "^6.0.1",
"eslint": "3.19.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^3.2.0",
"loader": "^2.1.1",
"postcss": "^5.2.6",
"postcss-loader": "^3.0.0",
"pug-html-loader": "^1.1.5",
"raw-loader": "^0.5.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.20.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"svg-inline-loader": "^0.8.0",
"sw-precache-webpack-plugin": "^0.11.5",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.0-beta.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.0",
"webpack-manifest-plugin": "^2.0.3"
}
}