forked from dexif/YourLife
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.58 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": "your-life",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:seyfer/your-life.git",
"author": "seyfer <[email protected]>",
"license": "MIT",
"scripts": {
"start": "APP_ENV=development webpack-dev-server --history-api-fallback --inline --progress --open",
"docker": "APP_ENV=development webpack-dev-server --hot --host 0.0.0.0 --port 8888",
"dashboard": "APP_ENV=development webpack-dashboard -- webpack-dev-server --history-api-fallback --inline --progress",
"build": "APP_ENV=production webpack --progress --hide-modules",
"build-git": "APP_ENV=git APP_BUILD=docs webpack --progress --hide-modules",
"lint": "./node_modules/eslint/bin/eslint.js --fix src"
},
"devDependencies": {
"@webpack-cli/init": "^0.1.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"cssnano": "^4.0.5",
"dotenv": "^6.0.0",
"eslint": "^5.4.0",
"eslint-loader": "^2.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.3",
"postcss-import": "^12.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^5.3.0",
"reset-css": "^4.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dashboard": "^2.0.0",
"webpack-dev-server": "^3.1.5"
}
}