-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
80 lines (80 loc) · 2.22 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
{
"name": "antd-data-table",
"version": "1.0.0",
"main": "lib/index.js",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"scripts": {
"start": "start-storybook -c .storybook -p 9001",
"test": "jest",
"cov": "npm test -- --coverage",
"lint": "tslint 'src/**/*.ts?(x)' --type-check --project tsconfig.json",
"build": "tsc",
"clean": "rimraf lib",
"build:storybook": "build-storybook -c .storybook -o docs",
"pre-release": "npm run lint && npm test && npm run build:storybook && npm run clean && npm run build",
"prepublish": "npm run lint && npm test && npm run clean && npm run build",
"patch": "npm run pre-release && npm version patch",
"minor": "npm run pre-release && npm version minor"
},
"devDependencies": {
"@storybook/addon-options": "^3.2.4",
"@storybook/addon-storyshots": "^3.2.5",
"@storybook/react": "^3.2.5",
"@types/enzyme": "^3",
"@types/immutability-helper": "^2.0.15",
"@types/jest": "^20.0.7",
"@types/node": "^8.0.23",
"@types/react": "^16",
"@types/react-dom": "^16",
"antd": "^3",
"awesome-typescript-loader": "^3.2.3",
"axios": "^0.16.2",
"css-loader": "^0.28.5",
"declaration-bundler-webpack-plugin": "^1.0.3",
"enzyme": "^3",
"http-proxy-middleware": "^0.17.4",
"jest": "^20.0.4",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"raw-loader": "^0.5.1",
"react": "^16",
"react-dom": "^16",
"react-test-renderer": "^16",
"rimraf": "^2.6.1",
"storybook-readme": "^3.0.6",
"style-loader": "^0.18.2",
"ts-jest": "^20.0.10",
"tslint": "^5.5.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^2.4.2",
"webpack": "^3.5.5"
},
"dependencies": {
"immutability-helper": "^2.3.1"
},
"peerDependencies": {
"antd": ">=3",
"react": ">=16"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"setupTestFrameworkScriptFile": "./test/setup.ts",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
},
"proxy": {}
}