forked from altjs/react
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"name": "alt-react",
"version": "0.0.2",
"description": "Connect flux to react",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "yarn run clean && yarn run transpile",
"clean": "rimraf lib",
"pretest": "yarn run clean && yarn run transpile",
"test": "babel-node node_modules/.bin/_mocha -u exports -R nyan test",
"transpile": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "[email protected]:altjs/react.git"
},
"keywords": [
"context",
"instance",
"flux",
"isomorphic",
"universal",
"react",
"connect",
"stores",
"alt"
],
"author": "Josh Perez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/altjs/react/issues"
},
"homepage": "https://github.com/altjs/react",
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/node": "^7.16.7",
"@babel/plugin-proposal-function-bind": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"alt": "https://github.com/bitshares/alt.git",
"chai": "^4.3.4",
"jsdom": "^19.0.0",
"mocha": "^9.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"sinon": "^12.0.1"
},
"dependencies": {
"create-react-class": "^15.7.0",
"prop-types": "^15.8.0"
}
}