This repository was archived by the owner on Apr 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.63 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
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
{
"name": "@titan-tooling/ui",
"version": "0.15.3",
"sideEffects": false,
"description": "Titan UI CSS",
"main": "dist/main.js",
"module": "dist/main.esm.js",
"types": "dist/main.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/code-mattclaffey/titan-ui"
},
"scripts": {
"start": "npm run build && npm run storybook",
"build": "rollup --config ./rollup.config.js",
"prebuild": "rm -rf ./dist",
"serve": "http-server storybook-static -p 8081 -s",
"test": "npm run lint:js && npm run jest && npm run snapshot",
"jest": "jest --coverage",
"bundlesize": "bundlesize",
"prepublish": "npm run build",
"storybook": "npm run build && start-storybook -s ./dist -p 6006",
"deploy": "npm run lint:js && npm run jest && npm run build && npm run build-storybook",
"build-storybook": "build-storybook -s ./dist",
"copy": "",
"snapshot": "build-storybook -s ./dist && percy-storybook --widths=320,1300",
"lint:js": "eslint src/components/**/*.tsx"
},
"license": "UNLICENSED",
"dependencies": {
"classnames": "^2.2.6",
"normalize.css": "^8.0.1",
"rollup-plugin-postcss": "^2.5.0"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@percy/storybook": "^3.2.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@storybook/addon-a11y": "^5.2.6",
"@storybook/addon-actions": "^5.2.6",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-docs": "^5.2.6",
"@storybook/addon-links": "^5.2.6",
"@storybook/addon-viewport": "^5.2.6",
"@storybook/addons": "^5.2.6",
"@storybook/react": "^5.2.6",
"@storybook/theming": "^5.2.6",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^9.3.2",
"@titan-tooling/eslint-config": "^0.3.3",
"@titan-tooling/postcss-config": "^0.5.0",
"@titan-tooling/typescript-eslint-config": "^1.0.0-beta.1",
"@types/classnames": "^2.2.9",
"@types/jest": "^24.0.23",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"autoprefixer": "^9.7.3",
"babel-loader": "^8.1.0",
"bundlesize": "^0.18.0",
"eslint": "^6.7.1",
"http-server": "^0.11.1",
"jest": "^24.9.0",
"jest-each": "^24.9.0",
"minimist": "^1.2.5",
"pre-commit": "^1.2.2",
"regenerator-runtime": "^0.13.3",
"rollup": "^2.3.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"storybook-react-to-static-markup": "^0.1.1",
"stylelint-config-standard": "^18.3.0",
"ts-jest": "^24.3.0",
"typescript": "^3.8.3"
},
"pre-commit": [
"lint:js",
"jest",
"bundlesize"
],
"bundlesize": [
{
"path": "./dist/main.js",
"maxSize": "30 kB"
},
{
"path": "./dist/main.esm.js",
"maxSize": "20 kB"
}
]
}