-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 3.46 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "traitify-widgets",
"version": "3.5.6",
"description": "Traitiy Widgets",
"repository": {
"type": "git",
"url": "https://github.com/traitify/traitify-widgets.git"
},
"main": "./build/traitify.js",
"files": [
"build/*"
],
"scripts": {
"build": "webpack --define-process-env-node-env production --progress",
"build:compatibility": "webpack --define-process-env-node-env production --env platform=browser --progress",
"dev": "webpack serve --env platform=browser",
"dev:secure": "webpack serve --env platform=browser --server-type https",
"i18n:sync": "cd packages/i18n-sync && npm run i18n:sync --",
"i18n-sync:test": "cd packages/i18n-sync && npm run test --",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:watch": "esw -w {packages,src,test} --color",
"prebuild": "mkdirp build",
"prebuild:compatibility": "mkdirp build",
"prei18n-sync:test": "cd packages/i18n-sync && npm install",
"prerjp:test": "cd packages/realistic-job-preview && npm install",
"pretest": "npm run lint",
"rjp:dev": "cd packages/realistic-job-preview && npm run dev --",
"rjp:test": "cd packages/realistic-job-preview && npm run test --",
"test": "npm-run-all *:test",
"traitify:lint": "eslint {src,test}",
"traitify:test": "jest --config test/jest.config.js --coverage",
"traitify:test:watch": "jest --config test/jest.config.js --watch"
},
"keywords": [
"traitify",
"personality",
"widgets"
],
"license": "MIT",
"author": "Traitify <support@traitify.com> (www.traitify.com)",
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-plugin": "^7.24.7",
"@babel/plugin-proposal-export-default-from": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/register": "^7.24.6",
"@babel/runtime": "^7.24.7",
"autoprefixer": "^10.4.19",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-jsx-pragmatic": "^1.0.2",
"babel-preset-airbnb": "^5.0.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-traitify": "^0.4.0",
"eslint-import-resolver-jest": "^3.0.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-watch": "^8.0.0",
"eslint-webpack-plugin": "^4.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.15",
"postcss-loader": "^8.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"devDependenciesNotes": {
"postcss": "peer-dependency of postcss-loader"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"apexcharts": "^3.49.2",
"color": "^4.2.3",
"core-js": "^3.37.1",
"markdown-to-jsx": "^7.4.7",
"prop-types": "^15.8.1",
"react-apexcharts": "^1.4.1",
"recoil": "^0.7.7",
"regenerator-runtime": "^0.14.1",
"uuid": "^10.0.0"
},
"dependenciesNotes": {},
"peerDependencies": {
"react": ">=18.0.0 || <19.0.0",
"react-dom": ">=18.0.0 || <19.0.0"
}
}