-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "rebone",
"version": "0.0.8",
"description": "Backbone with redux and react-like properties",
"main": "lib/index.js",
"author": "Daryl Keeter",
"license": "ISC",
"scripts": {
"transpile": "@babel src -d lib --copy-files"
},
"contributors": [
{ "name" : "Federico Orlandau",
"email" : "federico.orlandau@gmail.com",
"url" : "https://github.com/fedeorlandau"
}
],
"keywords": [
"rebone",
"backbone",
"redux",
"state",
"reducer",
"actions"
],
"repository": {
"type": "git",
"url": "git+https://github.com/valtech-nyc/rebone.git"
},
"dependencies": {
"backbone": "^1.3.3",
"backbone-redux": "^0.3.0-rc.1",
"jquery": "^3.3.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"underscore": "^1.9.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.5"
}
}