-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.75 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
{
"name": "@osag/tuktuktwo",
"version": "1.2.0",
"description": "Open Systems Graphs Library",
"main": "dist/tuktuktwo.js",
"repository": "https://github.com/open-ch/pyrene.git",
"author": "pyrene@open-systems.com",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist node_modules",
"prebuild": "npm ci",
"build": "webpack && NODE_ENV=production webpack",
"build-debug": "NODE_ENV=debug webpack",
"watch": "webpack -w",
"expose": "npm link && npm run watch",
"pretest": "npm install",
"test": "jest",
"testWatch": "jest --watch",
"test:bamboo": "NODE_ENV=test JEST_FILE=test.json && jest --config=./jest.bamboo.config.js",
"prerelease": "npm run build && npm run test",
"release": "release-it",
"prelint": "npm install",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-object-assign": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.14.5",
"@osag/eslint-config": "^1.6.0",
"@types/enzyme": "^3.10.9",
"@types/jest": "^26.0.23",
"@types/react": "^16.9.50",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"autoprefixer": "^10.2.6",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.12",
"jest": "^27.0.6",
"jest-bamboo-formatter": "^1.0.1",
"moment-timezone": "^0.5.33",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"release-it": "^14.10.0",
"typescript": "^4.3.4",
"webpack": "^5.41.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"@vx/axis": "^0.0.199",
"@vx/drag": "^0.0.199",
"@vx/event": "^0.0.199",
"@vx/grid": "^0.0.199",
"@vx/group": "^0.0.199",
"@vx/responsive": "^0.0.199",
"@vx/scale": "^0.0.199",
"@vx/shape": "^0.0.199",
"@vx/tooltip": "^0.0.199",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"moment-timezone": ">=0.5.0 < 1.0.0",
"react": ">=16.9.0 <18.0.0",
"react-dom": ">=16.9.0 <18.0.0"
}
}