-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.19 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
{
"name": "@newfold/ui-component-library",
"version": "1.1.0",
"description": "A UI component library by Newfold Digital",
"main": "index.js",
"style": "css/style.css",
"author": {
"name": "Newfold Labs",
"url": "https://github.com/newfold-labs"
},
"homepage": "https://github.com/newfold-labs/npm-ui-component-library#readme",
"repository": {
"type": "git",
"url": "https://github.com/newfold-labs/npm-ui-component-library.git"
},
"license": "GPL-3.0",
"private": false,
"sideEffects": false,
"scripts": {
"clean:build": "rm -rf build",
"build": "npm run clean:build && npm run build:js && npm run build:css && npm run copy:package-files",
"build:js": "babel src --out-dir build --ignore \"src/**/*.stories.js\",\"src/**/stories.js\"",
"build:css": "node ./scripts/build-css.js",
"copy:package-files": "cp README.md package.json build/",
"watch": "npm run watch:js & npm run watch:css",
"watch:js": "npm run build:js --watch",
"watch:css": "node ./scripts/watch-css.js",
"test": "npm test:storyshots",
"lint": "eslint src --max-warnings=0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-plugin": "^7.19.1",
"@babel/parser": "^7.20.5",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.22.9",
"@mdx-js/react": "^2.1.5",
"@tailwindcss/forms": "^0.5.3",
"@wordpress/babel-preset-default": "^7.22.0",
"babel-loader": "^9.1.0",
"eslint": "^7.32.0",
"eslint-config-yoast": "^5.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.31.11",
"postcss": "^8.4.19",
"puppeteer": "^17.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss": "^3.2.4"
},
"dependencies": {
"@headlessui/react": "^1.7.8",
"@heroicons/react": "^1.0.6",
"@reduxjs/toolkit": "^1.8.3",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"postcss-import": "^15.1.0",
"prop-types": "^15.8.1",
"react-animate-height": "^3.1.0",
"react-error-boundary": "^3.1.4"
},
"peerDependencies": {
"@wordpress/element": "^4.1.1"
}
}