forked from tajo/react-movable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.63 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@plesk/react-movable",
"version": "2.7.1",
"description": "Drag and drop lists.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/plesk/react-movable"
},
"author": "Vojtech Miksu <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf lib && tsc --outDir lib && cp flowtypes/* lib && rm lib/*.test.*",
"build-storybook": "build-storybook -s public && rm ./examples/*.d.ts && rm ./src/*.d.ts",
"jest:e2e": "jest --runInBand",
"jest:e2e:update": "jest --runInBand -u e2e",
"storybook": "start-storybook -p 9010 -s public",
"storybook:ci": "start-storybook -p 9011 -s public --ci --quiet",
"test": "yarn typecheck && yarn test:e2e && yarn test:unit",
"test:e2e": "start-server-and-test storybook:ci http-get://localhost:9011 jest:e2e",
"test:e2e:dev": "E2E=dev yarn jest:e2e",
"test:e2e:update": "start-server-and-test storybook:ci http-get://localhost:9011 jest:e2e:update",
"test:unit": "jest src",
"typecheck": "tsc --noEmit"
},
"tags": [
"react"
],
"keywords": [
"react",
"react-dom",
"react-component",
"sortable",
"reorder",
"reorderable",
"drag",
"drop",
"list",
"table",
"drag and drop",
"dnd",
"movable"
],
"devDependencies": {
"@storybook/react": "5.2.8",
"@types/expect-puppeteer": "^3.3.3",
"@types/jest": "^24.0.23",
"@types/jest-environment-puppeteer": "^4.3.1",
"@types/jest-image-snapshot": "^2.11.0",
"@types/node": "^12.12.17",
"@types/puppeteer": "^2.0.0",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"imgur": "^0.3.1",
"jest": "^24.9.0",
"jest-image-snapshot": "^2.11.1",
"jest-puppeteer": "^4.3.0",
"puppeteer": "^2.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"start-server-and-test": "^1.10.6",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
},
"peerDependencies": {
"react": "^16.3.0-0 || ^17.0.0-0",
"react-dom": "^16.3.0-0 || ^17.0.0-0"
},
"jest": {
"roots": [
"<rootDir>/src/",
"<rootDir>/e2e/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.[jt]sx?$",
"setupFilesAfterEnv": [
"./setupTests.js"
],
"reporters": [
"default",
"<rootDir>/image-reporter.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"preset": "jest-puppeteer"
}
}