-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.16 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
{
"name": "viarium-io-front",
"version": "1.1.2",
"description": "Front-end for Viarium",
"keywords": [
"webpack",
"front-end build"
],
"homepage": "https://github.com/ADCI/webpack-starter-kit",
"bugs": {
"url": "https://github.com/ADCI/webpack-starter-kit/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ADCI/webpack-starter-kit"
},
"main": "webpack.config.prod.babel.js",
"engines": {
"node": ">=6.9.0"
},
"private": true,
"scripts": {
"clean": "npm-run-all clean:*",
"clean:dist": "del-cli dist",
"prestart": "npm-run-all --parallel clean",
"start": "cross-env STYLES=scss webpack --progress --env.dev --config webpack.config.dev.babel.js",
"start:webpack-server": "cross-env STYLES=scss webpack-dev-server --open --env.dev --config webpack.config.dev.babel.js",
"build": "cross-env STYLES=scss webpack --progress --env.build --config webpack.config.dev.babel.js",
"build:prod": "cross-env STYLES=scss webpack -p --env.prod --config webpack.config.prod.babel.js",
"debug": "cross-env STYLES=scss webpack -d --display-error-details --env.dev",
"lint:autofix": "stylefmt -c .stylelintrc -r src/scss/**/*.scss && eslint src/js --fix",
"postinstall": "del-cli node_modules/**/*.info"
},
"dependencies": {
"babel-preset-env": "^1.6.0",
"bootbox": "^4.4.0",
"bootstrap": "^4.0.0-beta.2",
"clipboard": "^1.7.1",
"copy-webpack-plugin": "^4.3.0",
"intl-tel-input": "^12.1.6",
"jquery": "^3.2.1",
"jquery-countdown": "^2.2.0",
"moment": "^2.20.0",
"normalize.css": "^7.0.0",
"popper.js": "^1.12.9"
},
"devDependencies": {
"autoprefixer": "^7.0.1",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-runtime": "^6.22.0",
"browser-sync": "^2.18.8",
"browser-sync-webpack-plugin": "^1.1.4",
"cross-env": "^5.1.3",
"css-loader": "^0.28.0",
"del-cli": "^1.0.0",
"eslint": "^4.1.1",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-loader": "^0.5.0",
"html-webpack-exclude-assets-plugin": "0.0.5",
"html-webpack-plugin": "^2.28.0",
"image-webpack-loader": "^3.2.0",
"node-sass": "^4.5.2",
"npm-run-all": "^4.0.1",
"postcss-cssnext": "^3.0.2",
"postcss-extend": "^1.0.5",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.5",
"postcss-reporter": "^5.0.0",
"pug-html-loader": "^1.1.0",
"sass-loader": "^6.0.0",
"spritesmith-cli": "^1.1.2",
"style-loader": "^0.18.2",
"stylefmt": "^6.0.0",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-scss": "^2.0.1",
"stylelint-webpack-plugin": "^0.9.0",
"url-loader": "^0.5.7",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.3.0"
}
}