-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.33 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.33 KB
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
{
"name": "@8base/file-manager",
"version": "1.0.10",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "8base",
"license": "MIT",
"scripts": {
"build": "tsc -p ."
},
"peerDependencies": {
"apollo-client": "^2.6.3",
"graphql": "^14.0.0",
"react": "^16.13.1",
"react-apollo": "^3.1.0",
"react-dom": "^16.14.0"
},
"dependencies": {
"@apollo/client": "^3.9.5",
"@emotion/css": "^11.1.3",
"filestack-js": "3.7.0",
"graphql-tag": "^2.10.0",
"react-dropzone": "^11.3.4"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@types/graphql": "^14.2.0",
"@types/jest": "^24.0.13",
"apollo-client": "^2.6.3",
"babel-jest": "^24.8.0",
"graphql": "^14.3.1",
"jest": "24.7.1",
"react-test-renderer": "^16.8.6",
"ts-jest": "^24.0.2",
"typescript": "^4.1.3"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/tsconfig.json"
}
},
"collectCoverageFrom": [
"<rootDir>/src/**",
"!<rootDir>/**/__tests__/**"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
]
}
}