-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 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
{
"name": "@eqworks/api-explorer",
"version": "0.1.0-alpha.1",
"description": "Headless React library for arbitrary API endpoints exploration",
"main": "dist/index.js",
"source": "src/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint src/ stories/ __tests__/",
"build": "babel src --out-dir dist --copy-files",
"prepublishOnly": "yarn lint && yarn test && yarn build"
},
"keywords": [
"react",
"api",
"hooks",
"headless"
],
"author": "dev@eqworks.com",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@eqworks/chart-system": "^0.6.3-alpha.11",
"@eqworks/lumen-labs": "^0.1.0-alpha.41",
"@eqworks/lumen-table": "^2.0.0-alpha.2",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@testing-library/react-hooks": "^7.0.2",
"ace-builds": "^1.4.14",
"babel-loader": "^8.2.3",
"eslint": "^8.10.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-react": "^7.29.3",
"jest": "^27.5.1",
"react": "^16.14.0",
"react-ace": "^9.5.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0"
}
}