This repository has been archived by the owner on May 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.44 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
{
"name": "ui_starter_kit",
"version": "1.0.0",
"description": "A starter kit for UI applications",
"main": "index.html",
"repository": {
"type": "git",
"url": "https://github.com/usmakestwo/ui-starter-kit.git"
},
"author": {
"name": "Gonzalo Vazquez",
"email": "[email protected]"
},
"license": "UsMakesTwo",
"bugs": {
"url": "https://github.com/usmakestwo/ui-starter-kit.git/issues"
},
"homepage": "https://github.com/usmakestwo/ui-starter-kit.git#readme",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"mocha": "^5.2.0",
"react-hot-loader": "^4.3.12",
"react-test-renderer": "^16.6.3",
"redux-devtools": "^3.4.2",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"lodash": "^4.17.11",
"pre-commit": "^1.2.2",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-config": "4.4.0-beta.6",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js",
"dist": "rm -rf dist && cross-env NODE_ENV=production webpack --progress --config ./webpack.config.js",
"test": "npm run-script lint && mocha ./src/__tests__/**/*.js --require @babel/register",
"lint": "node node_modules/eslint/bin/eslint.js --ext .js src",
"lint-fix": "node node_modules/eslint/bin/eslint.js --fix --ext .js src",
"security": "npm audit",
"prepublish": "npm run dist"
},
"precommit": [
"test",
"dist"
]
}