-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.26 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.26 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "periqles",
"version": "2.1.2",
"description": "React form library for GraphQL APIs using Apollo or Relay client",
"main": "index.js",
"types": "./types/index.d.ts",
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/periqles"
},
"maintainers": [
{
"name": "Joe Toledano"
},
{
"name": "Kelly Porter"
},
{
"name": "Ian Garrett"
},
{
"name": "Cameron Baumgartner"
}
],
"license": "MIT",
"keywords": [
"react",
"relay",
"apollo",
"graphql",
"forms",
"component"
],
"scripts": {
"tsc": "tsc",
"clean": "shx rm -rf _bundles lib lib-esm",
"build": "npm run clean && tsc && tsc -m es6 --outDir lib-esm && webpack",
"publish:local": "npm run build && npm pack && cp periqles-2.1.0.tgz ~",
"lint": "eslint ./src ./types",
"test": "jest --verbose --testURL=http://localhost:3005 --detectOpenHandles",
"prepare": "npm run build",
"test-async": "jest --verbose --detectOpenHandles",
"test-serverRunning": "node ./__mocks__/mockServer.js & jest --verbose"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/eslint-parser": "^7.12.17",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/plugin-transform-typescript": "^7.12.17",
"@babel/preset-env": "^7.13.5",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.17",
"@testing-library/dom": "^7.29.6",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-relay": "^10.1.3",
"cors": "^2.8.5",
"css-loader": "^5.0.2",
"eslint": "^7.14.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"path": "^0.12.7",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"relay-test-utils": "^10.1.3",
"shx": "^0.3.3",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.0.0",
"webpack-cli": "^4.5.0",
"whatwg-fetch": "^3.6.1",
"supertest": "^6.1.3"
},
"dependencies": {
"react-relay": "^10.1.0"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": true
},
"jest": {
"globalSetup": "./__tests__/jest-setup.js",
"globalTeardown": "./__tests__/jest-teardown.js",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}