-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.08 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
{
"name": "@dbenfouzari/modern-components",
"version": "0.0.0-development",
"description": "Modern components library",
"main": "lib/index.js",
"author": "Donovan BENFOUZARI <[email protected]>",
"license": "MIT",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check --watch",
"build": "rimraf lib && yarn build:types && yarn build:js && yarn build:doc",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps",
"build:doc": "docz build",
"start": "docz dev",
"test": "jest",
"coverage": "jest --coverage",
"lint": "tslint --project tsconfig.lint.json -t codeFrame",
"prettier": "prettier --config .prettierrc src/**/*.{ts,tsx}",
"prettier:write": "yarn prettier --write",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"@types/chroma-js": "^1.4.1",
"@types/enzyme": "^3.1.15",
"@types/jest": "^23.3.10",
"@types/react": "^16.7.10",
"@types/react-dom": "^16.0.11",
"@types/react-test-renderer": "^16.0.3",
"@types/styled-components": "^4.1.2",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.4",
"doctrine": "^3.0.0",
"docz": "^0.13.7",
"docz-plugin-css": "^0.11.0",
"docz-theme-default": "^0.13.7",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.3.4",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jest-styled-components": "^6.3.1",
"prettier": "^1.15.3",
"react": "^16.7.0-alpha.2",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-dom": "^16.7.0-alpha.2",
"react-test-renderer": "^16.7.0-alpha.2",
"rimraf": "^2.6.2",
"semantic-release": "^15.13.3",
"storybook-addon-styled-component-theme": "^1.1.0",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^3.6.0",
"typescript": "^3.2.1",
"typescript-plugin-styled-components": "^1.0.0"
},
"peerDependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.12",
"@fortawesome/free-brands-svg-icons": "^5.6.3",
"@fortawesome/free-solid-svg-icons": "^5.6.3",
"@fortawesome/react-fontawesome": "^0.1.3",
"chroma-js": "^2.0.2",
"mdi-react": "^5.1.0",
"moment": "^2.22.2",
"polished": "^2.3.0",
"styled-components": "^4.1.2"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/dbenfouzari/modern-components.git"
}
}