-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
79 lines (79 loc) · 1.98 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
{
"name": "RxViz",
"version": "1.0.0",
"description": "Animated playground for Rx Observables",
"repository": {
"type": "git",
"url": "https://github.com/moroshko/rxviz.git"
},
"author": "Misha Moroshko <[email protected]>",
"scripts": {
"start": "NODE_ENV=production node server.js",
"dev": "node server.js",
"build": "next build",
"lint": "eslint components css lib pages ./*.js",
"test": "jest",
"coverage": "jest --coverage",
"prettier": "prettier --single-quote --write \"components/**/*.js\" \"css/**/*.js\" \"lib/**/*.js\" \"pages/**/*.js\" \"./*.js\"",
"precommit": "lint-staged"
},
"dependencies": {
"codemirror": "^5.56.0",
"color": "^1.0.3",
"copy-to-clipboard": "^3.0.6",
"d3-path": "^1.0.5",
"d3-scale": "^1.0.6",
"express": "^4.15.3",
"isomorphic-unfetch": "^1.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.isfunction": "^3.0.8",
"lodash.isplainobject": "^4.0.6",
"lodash.isundefined": "^3.0.1",
"lodash.omit": "^4.5.0",
"lodash.set": "^4.3.2",
"next": "^9.5.1",
"prop-types": "^15.5.10",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-ga": "^2.2.0",
"react-measure": "^2.0.2",
"react-numeric-input": "moroshko/react-numeric-input",
"rxjs": "^6.2.1",
"tinyqueue": "^1.2.2"
},
"devDependencies": {
"babel-eslint": "^8.2.5",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.13.4",
"jest": "^20.0.4",
"lint-staged": "^3.6.1",
"lodash.sortby": "^4.7.0",
"lolex": "^1.6.0",
"prettier": "^1.13.7"
},
"lint-staged": {
"*.js": [
"npm run prettier",
"npm run lint",
"npm test",
"git add"
]
},
"keywords": [
"rx",
"rxjs",
"reactive",
"observable",
"stream",
"visualizer",
"visualization",
"svg",
"animation",
"react",
"react-component"
],
"license": "MIT"
}