-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.48 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
{
"name": "brainstem-redux",
"version": "1.0.1",
"description": "Client-side Brainstem store in Redux",
"scripts": {
"ci:lint": "yarn lint",
"ci:test": "yarn karma --single-run",
"deduplicate": "yarn-deduplicate && yarn",
"karma": "karma start karma.config.js",
"lint": "eslint '**/*.js'",
"lint-fix": "yarn lint --fix",
"start": "webpack-dev-server --config webpack.dev.config.js",
"test": "yarn ci:lint && yarn ci:test",
"test:watch": "yarn karma"
},
"keywords": [
"brainstem",
"brainstem-js",
"redux"
],
"author": "Juan Carlos Medina",
"contributors": [
{
"name": "Juan Carlos Medina",
"email": "[email protected]"
},
{
"name": "Andy Leavitt",
"email": "[email protected]"
},
{
"name": "Naomi Jacobs",
"email": "[email protected]"
},
{
"name": "Alan Wong",
"email": "[email protected]"
},
{
"name": "Brad Midgley",
"email": "[email protected]"
},
{
"name": "Brandon Duff",
"email": "[email protected]"
},
{
"name": "Ellie Day",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/mavenlink/brainstem-redux.git"
},
"license": "MIT",
"dependencies": {
"lodash.isobject": "^3.0.2"
},
"peerDependencies": {
"brainstem-js": ">= 0.7.1",
"jquery": "2.2.4",
"redux": "^4.0.4",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.24.3",
"babel-loader": "^8.0.6",
"backbone": "1.1.2",
"brainstem-js": "^0.7.1",
"core-js": "2.x.x",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"jasmine-core": "^2.9.1",
"jquery": "^3.7.1",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^1.1.2",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^3.0.5",
"lodash.omit": "^4.5.0",
"react": "^16",
"react-dom": "^16",
"react-redux": "^5.1.1",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"underscore": ">= 1.4.4",
"webpack": "3.11.0",
"webpack-dev-server": "^2.11.5",
"yarn-deduplicate": "^6.0.2"
}
}