-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.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
{
"name": "rdx-model",
"version": "0.0.5",
"description": "redux model",
"main": "lib/rdx.js",
"unpkg": "dist/rdx.js",
"module": "es/rdx.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json",
"dev": "webpack-dev-server --open --mode development",
"test": "./node_modules/jest/bin/jest.js --color",
"build": "rollup -c",
"clean": "rm -rf ./dist",
"prepush": "npm run lint && npm run build -q",
"prepack": "npm run lint && npm run build -q",
"start": "node scripts/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/juicecube/rxModel.git"
},
"keywords": [
"redux"
],
"author": "fukai",
"license": "UNLICENSED",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/runtime": "^7.4.0",
"@types/jest": "^24.0.18",
"@types/node": "^11.13.5",
"husky": "^1.3.1",
"jest": "^24.9.0",
"redux": "^4.0.4",
"rollup": "^1.26.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.25.2",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^3.4.3",
"yosay": "^2.0.2"
},
"dependencies": {
"@types/redux-actions": "^2.6.1",
"redux-actions": "^2.6.5"
}
}