This repository has been archived by the owner on Aug 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.78 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "kamamana",
"version": "0.0.4",
"description": "Higher Order Custom HTML React Components, useful for personal projects",
"keywords": [
"reactjs",
"react",
"javascript",
"css-in-js",
"components",
"design",
"component",
"ui",
"framework",
"frontend"
],
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"browser": "dist/index.umd.js",
"files": [
"dist"
],
"dependencies": {
"memoize-one": "^5.0.0",
"nano-css": "^3.5.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-parameters": "^7.2.0",
"@babel/plugin-transform-template-literals": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.12",
"@fortawesome/free-solid-svg-icons": "^5.6.3",
"@fortawesome/react-fontawesome": "^0.1.3",
"@material-ui/core": "^3.8.1",
"@material-ui/icons": "^3.0.1",
"@storybook/addon-actions": "^4.1.6",
"@storybook/addon-info": "^4.1.4",
"@storybook/addon-options": "^4.1.3",
"@storybook/addon-storyshots": "^4.1.4",
"@storybook/addon-storyshots-puppeteer": "^4.1.4",
"@storybook/react": "^4.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-require-context-hook": "^1.0.0",
"cross-env": "^5.2.0",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^2.0.1",
"husky": "^1.2.1",
"jest": "^23.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.3",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-test-renderer": "^16.7.0",
"rimraf": "^2.6.2",
"rollup": "^0.68.1",
"rollup-plugin-analyzer": "^2.1.0",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-size-snapshot": "^0.7.0",
"rollup-plugin-uglify": "^6.0.0",
"rollup-plugin-visualizer": "^0.9.2"
},
"peerDependencies": {
"react": ">= 16.5.0",
"react-dom": ">= 16.5.0"
},
"scripts": {
"lint": "eslint ./src",
"test": "cross-env NODE_ENV=test jest",
"test:stories": "cross-env NODE_ENV=test jest --testMatch \"**/?(*.)+(storyshots).js\"",
"storybook": "start-storybook -p 9001 -c .storybook",
"prebuild": "rimraf dist .stats/*",
"prebuild:dev": "npm run prebuild",
"build": "cross-env NODE_ENV=production rollup -c",
"build:dev": "cross-env NODE_ENV=development rollup -c",
"build:stories": "build-storybook -c .storybook -o .out",
"prepublishOnly": "run-p lint test build",
"analyze": "NODE_ANALYZE=1 rollup -c",
"preghpages": "npm run build:stories",
"ghpages": "gh-pages -d .out",
"pretest:imageShots": "npm run build:stories",
"test:imageShots": "cross-env NODE_ENV=test jest --testMatch \"**/?(*.)+(image).js\""
},
"repository": {
"type": "git",
"url": "https://github.com/willofindie/kamamana.git"
},
"author": "Subroto Biswas <shub1493biswas@gmail.com>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "run-p lint test"
}
},
"jest": {
"verbose": true,
"rootDir": ".",
"roots": [
"<rootDir>",
"<rootDir>/src"
],
"modulePaths": [
"<rootDir>/src"
],
"setupFiles": [
"<rootDir>/.jest/register-context.js"
]
}
}