This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.04 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "example-redux-ui",
"version": "1.0.0",
"description": "Skeleton redux UI",
"scripts": {
"clean": "rm -rf public && rm -rf dist && mkdir public",
"dev": "nodemon server",
"build:copy-images": "cp -r images public/images",
"build:copy-html": "cp index.html public/index.html",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm-run-all build:*",
"start": "NODE_ENV=production node server",
"test": "jest --ci --coverage",
"test:dev": "jest --watch",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:ocelotconsulting/example-redux-ui.git"
},
"keywords": [
"react",
"redux",
"ui"
],
"nodemonConfig": {
"ignore": [
"test/*"
],
"delay": "2500"
},
"jest": {
"projects": [
{
"testMatch": [
"<rootDir>/test/**/*Spec.js"
],
"setupFiles": [
"./test/setup.js"
],
"verbose": false,
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
{
"runner": "jest-runner-eslint",
"displayName": "lint",
"testMatch": [
"<rootDir>/src/**/*.js",
"<rootDir>/test/**/*Spec.js"
]
}
]
},
"author": "John O'Malley",
"license": "MIT",
"bugs": {
"url": "https://github.com/ocelotconsulting/example-redux-ui/issues"
},
"homepage": "https://github.com/ocelotconsulting/example-redux-ui#readme",
"engines": {
"node": ">=9.11.1",
"npm": ">=5.6.0"
},
"dependencies": {
"express": "^4.16.3",
"lodash": "^4.17.10",
"moment": "^2.22.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"classnames": "^2.2.5",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"jest": "^23.1.0",
"jest-runner-eslint": "^0.6.0",
"node-sass": "^4.9.0",
"nodemon": "^1.17.5",
"npm-run-all": "^4.1.3",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.4.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^16.4.0",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.11.1",
"sass-loader": "^7.0.2",
"standard": "^11.0.1",
"style-loader": "^0.21.0",
"superagent": "^3.8.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.10.2",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2"
}
}