-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.35 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
{
"name": "@apmg/titan",
"version": "2.0.4",
"repository": {
"type": "git",
"url": "https://github.com/APMG/apm-titan.git"
},
"main": "dist/bundle.js",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest --watch",
"test:ci": "jest",
"test:coverage": "jest --coverage",
"eslint": "eslint .",
"sasslint": "sass-lint -c .sass-lint.yml -v -q",
"prettier": "prettier --check '**/**.js'",
"prettier:fix": "prettier --check '**/**.js' --write",
"blast": "rm -rf node_modules dist package-lock.json && yarn check"
},
"dependencies": {
"apm-html5-player": "^0.4.1",
"apm-mimas": "^0.1.9",
"dayjs": "^1.10.7",
"react-dom": "^18.2.0",
"uuid": "^7.0.2"
},
"peerDependencies": {
"classnames": "^2.2.6",
"next": ">=14.1.1",
"prop-types": "^15.7.2",
"react": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "7.17.12",
"@testing-library/react": "^14.0.0",
"@testing-library/jest-dom": "^5.16.5",
"ansi-regex": "^6.0.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"css-loader": "^3.5.3",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.14.2",
"husky": "^3.0.3",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-prop-type-error": "^1.1.0",
"merge": "^2.0.0",
"minimist": "^1.2.6",
"next": ">=14.1.1",
"path": "^0.12.7",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-is": "^18.2.0",
"rollup": "1.0.0",
"rollup-plugin-babel": "^4.3.3",
"sass": "^1.63.6",
"serve": "^11.3.0",
"style-loader": "^1.2.1"
},
"husky": {
"pre-commit": "yarn prettier && yarn eslint",
"pre-push": "yarn prettier && yarn eslint && yarn sasslint"
},
"files": [
"dist"
],
"resolutions" : {
"cross-spawn": ">=7.0.5",
"@babel/traverse": ">=7.23.2",
"ws": ">=8.17.1",
"braces": ">=3.0.3",
"rollup": ">=2.79.2",
"ajv":">=6.12.3",
"minimatch": ">=3.0.5",
"path-to-regexp": "3.3.0"
}
}