-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.76 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
{
"name": "athenic-ui",
"version": "1.3.7",
"description": "👑 Athenic UI React component library. Building beautiful React applications made simple!",
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/AthenicAustria/athenic-ui"
},
"community": {
"discord": "https://discord.gg/TSGj5RCJST"
},
"scripts": {
"start": "webpack --config webpack.config.js --progress -w",
"serve": "webpack serve --mode development --open",
"build:webpack": "rm -rf ./dist && webpack --config webpack.config.js --progress",
"build:tsc": "rm -rf ./dist && tsc",
"lint": "eslint --ext ts,tsx ./src",
"test": "jest --config ./jest.config.ts",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build:docs": "cd ./docs && npm run build",
"publish": "node ./src/utils/publish.webpack.js"
},
"keywords": [
"athenic",
"react",
"typescript",
"library",
"components",
"ui"
],
"author": "simonostini",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.2",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"node-sass": "^5.0.0",
"react-countup": "^4.3.3",
"sass": "^1.32.5"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"@babel/core": "^7.12.10",
"@storybook/addon-actions": "^6.1.15",
"@storybook/addon-essentials": "^6.1.15",
"@storybook/addon-links": "^6.1.15",
"@storybook/react": "^6.1.15",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/webpack": "^4.41.26",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-loader": "^8.2.2",
"chalk": "^4.1.0",
"css-loader": "^5.0.1",
"eslint": "^7.20.0",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0.0-beta.6",
"identity-obj-proxy": "^3.0.0",
"inquirer": "^7.3.3",
"jest": "^26.6.3",
"live-server": "^1.2.1",
"mini-css-extract-plugin": "^1.3.4",
"npm-dts": "^1.3.9",
"npm-dts-webpack-plugin": "^1.3.7",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"sass-loader": "^10.1.1",
"storybook": "^6.1.15",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"webpack": "^5.16.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
}
}