-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.36 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
80
81
{
"name": "magic-scroll",
"version": "0.0.12",
"scripts": {
"build:docs": "yarn clean:docs && gatsby build",
"start:docs": "yarn clean:docs && gatsby develop",
"start": "yarn start:docs",
"eject:docs": "antdsite-cli --eject",
"clean:docs": "gatsby clean",
"build": "cross-env BABEL_ENV=build node scripts/build.js",
"debug": "cross-env BABEL_ENV=build node scripts/auto-build.js",
"test": "jest --config jest.config.js --collectCoverage",
"lint": "tslint -c tslint.json 'src/**/*.tsx'"
},
"dependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"author": "Yves Wang",
"main": "dist/magic-scroll.js",
"typings": "types/index.d.ts",
"license": "MIT",
"repository": "https://github.com/YvesCoding/magic-scroll",
"files": [
"src",
"dist/*.js",
"types/*.d.ts",
"README.md",
"LICENSE"
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@types/prop-types": "^15.5.3",
"@types/react": "^16.3.16",
"@types/react-dom": "^16.0.5",
"antdsite": "0.10.5",
"babel-cli": "^6.26.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"babel7-jest": "^1.0.1",
"chokidar": "^2.0.4",
"codecov": "^3.0.0",
"cross-env": "^5.1.5",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.3.5",
"gatsby": "^2.13.45",
"identity-obj-proxy": "^3.0.0",
"inquirer": "^6.2.0",
"jest": "^23.6.0",
"jest-serializer-enzyme": "^1.0.0",
"lerna": "^3.11.1",
"react-test-renderer": "^16.6.1",
"rollup": "^0.55.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-postcss": "^1.6.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-uglify": "^4.0.0",
"ts-jest": "^23.10.5",
"ts-loader": "^4.3.1",
"tslint": "5.10.0",
"typescript": "^2.9.1",
"uglify-es": "^3.3.9",
"webpack": "^4.0.0",
"webpack-cli": "^3.0.1",
"zlib": "^1.0.5"
},
"devEngines": {
"node": "8.x || 9.x"
}
}