-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.46 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.46 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
{
"name": "@accurat/react-components",
"version": "0.6.8",
"description": "Collection of React components used for Accurat projects.",
"main": "lib/react-components.js",
"types": "lib/react-components.d.ts",
"files": [
"lib/"
],
"author": "Luca Falasco <falasco.luca@gmail.com> (https://github.com/lucafalasco)",
"license": "MIT",
"repository": "https://github.com/accurat/react-components",
"bugs": {
"url": "https://github.com/accurat/react-components/issues"
},
"keywords": [
"react",
"react-components",
"ui",
"styleguide",
"accurat"
],
"contributors": [
"Luca Falasco <falasco.luca@gmail.com> (https://github.com/lucafalasco)",
"Cesare Soldini <cesare.soldini@gmail.com> (https://github.com/caesarsol)",
"Marco Vettorello <marco.vettorello@accurat.it> (https://github.com/markov00)",
"nkint <alberto.massa@accurat.it> (https://github.com/nkint)",
"Marco Fugaro <marco.fugaro@gmail.com> (https://github.com/marcofugaro)",
"YeasterEgg <l.d.mattiazzi@gmail.com> (https://github.com/YeasterEgg)",
"NoFishLikeIan <andreatitton96@gmail.com> (https://github.com/NoFishLikeIan)"
],
"scripts": {
"start": "styleguidist server",
"build": "accurapp-scripts build && tsc --project . --emitDeclarationOnly --outFile lib/react-components.d.ts && replace-in-file 'src/index' '@accurat/react-components' lib/react-components.d.ts",
"build:styleguide": "rm -rf docs && styleguidist build",
"prepublishOnly": "npm run build"
},
"browserslist": [
">0.25%",
"not ie 11",
"not op_mini all"
],
"devDependencies": {
"@types/classnames": "^2.2.9",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.16",
"@types/react-custom-scrollbars": "^4.0.6",
"accurapp-scripts": "^4.2.0",
"babel-preset-accurapp": "^4.1.5",
"eslint-config-accurapp": "^4.2.8",
"react": "^16.12.0",
"react-docgen-typescript": "^1.16.1",
"react-dom": "^16.12.0",
"react-styleguidist": "~10.2.1",
"replace-in-file": "^4.2.0",
"tachyons": "^4.11.1",
"tachyons-extra": "^1.1.3",
"tslint": "^5.20.1",
"typescript": "^3.7.3",
"webpack-preset-accurapp": "^4.3.0"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.15",
"react-custom-scrollbars": "^4.2.1"
},
"peerDependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3",
"tachyons": "^4.11.1",
"tachyons-extra": "^1.0.3"
},
"publishConfig": {
"access": "public"
}
}