-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
{
"name": "typereact",
"version": "1.5.0",
"main": "dist/index.js",
"repository": "https://github.com/visusnet/typereact.git",
"author": "Alexander Müller <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest && flow",
"build": "node_modules/.bin/babel src -d dist",
"watch": "npm run build -- --watch",
"lint": "node_modules/.bin/eslint src"
},
"dependencies": {
"dom-scroll-into-view": "^1.2.1",
"memoize-one": "^4.0.0",
"prop-types": "^15.6.0",
"react": "16.6.3",
"react-dom": "16.6.3",
"react-virtualized": "^9.20.1"
},
"devDependencies": {
"@types/jest": "^23.3.0",
"@types/react": "~16.7.0",
"@types/react-dom": "^16.0.6",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-require-ignore": "^0.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"coveralls": "^3.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.4.0",
"enzyme-to-json": "^3.3.1",
"eslint": "^5.1.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.6.0",
"flow-bin": "^0.81.0",
"jest": "^23.4.1",
"jsdom": "^13.0.0",
"node-sass-chokidar": "^1.3.3",
"raf": "^3.4.0"
},
"jest": {
"collectCoverage": true
}
}