forked from theaidem/stapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.31 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
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
{
"name": "stapp",
"version": "0.0.1",
"description": "Stapp Frontend boilerplate",
"homepage": "https://github.com/theaidem/stapp",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run lint && npm run clean && npm run build:webpack",
"build:webpack": "webpack --mode production --config webpack.config.prod.js --env.NODE_ENV=production --progress",
"deploy:gh-pages": "GH_PAGES=true npm run build && ./node_modules/.bin/gh-pages -d dist && npm run clean",
"start": "clear && webpack-dev-server --mode development --config webpack.config.dev.js --port 3001 --colors --hot --history-api-fallback",
"gen": "clear && node ./scripts/generator.js",
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore --ext .js --ext .jsx source/scripts",
"lint:fix": "clear && ./node_modules/.bin/eslint --fix --ext .js --ext .jsx source/scripts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint-staged": "lint-staged",
"build:analysis": "webpack --mode production --config webpack.config.analysis.js --env.NODE_ENV=production --progress",
"analysis": "npm run lint && npm run clean && npm run build:analysis"
},
"authors": [
{
"name": "Max Kokorin"
},
{
"name": "Constantine Chuprik"
}
],
"license": "MIT",
"dependencies": {
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-react": "^7.9.1",
"history": "^4.6.2",
"inquirer": "^6.0.0",
"loadable-components": "^2.2.2",
"pluralize": "^7.0.0",
"react": "^16.4.0",
"react-dev-utils": "^5.0.1",
"react-dom": "^16.4.0",
"react-hot-loader": "^4.3.6",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"webpack-bundle-analyzer": "^2.13.1",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^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-numeric-separator": "^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/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"cross-env": "^5.0.1",
"css-loader": "^1.0.0",
"ejs-loader": "^0.3.0",
"eslint": "^5.5.0",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"favicons-webpack-plugin": "^0.0.9",
"file-loader": "^2.0.0",
"gh-pages": "^1.0.0",
"handlebars-loader": "^1.5.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2",
"style-loader": "^0.23.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.0.0",
"webpack-hot-middleware": "^2.22.0"
},
"lint-staged": {
"*.{js,jsx}": "lint"
},
"pre-commit": "lint-staged"
}