-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 KB
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
{
"name": "spa",
"version": "1.0.0",
"description": "Frontend Template",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=development webpack-dev-server --config config/webpack.config.js --progress",
"prebuild": "rimraf build",
"build-dev": "cross-env NODE_ENV=development webpack -d --config config/webpack.config.js --progress",
"build-prod": "cross-env NODE_ENV=production webpack -p --config config/webpack.config.js --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxurtutor/frontend.git"
},
"keywords": [
"spa",
"webpack",
"react",
"redux",
"npm"
],
"author": "Maxim Yunusov",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxurtutor/frontend/issues"
},
"homepage": "https://github.com/maxurtutor/frontend#readme",
"devDependencies": {
"autoprefixer": "^8.2.0",
"babel-eslint": "^8.2.2",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"html-webpack-plugin": "^3.2.0",
"manifest-revision-webpack-plugin": "^0.4.1",
"postcss-loader": "^2.1.3",
"precss": "^3.1.2",
"style-loader": "^0.20.3",
"stylelint": "^9.2.0",
"stylelint-webpack-plugin": "^0.10.4",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.1",
"webpack-notifier": "^1.6.0"
},
"dependencies": {
"lodash": "^4.17.5"
}
}