-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
120 lines (120 loc) · 5.02 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
{
"name": "styled-velocity",
"version": "0.0.68",
"description": "Styled-Velocity, a React-based styled prop and UI library to increase your velocity and help build your Design System.",
"author": "Jon K. Wheeler",
"license": "MIT",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/commonjs/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/jonkwheeler/styled-velocity.git"
},
"publishConfig": {
"scope": "jonkwheeler",
"registry": "https://registry.npmjs.org/"
},
"config": {
"dirBuild": "./dist",
"dirCommonjs": "./dist/commonjs",
"dirEsm": "./dist/esm",
"dirSrc": "./src",
"dirStorybook": "./.storybook",
"dirStorybookBuild": "./.out",
"portStorybook": "8888"
},
"scripts": {
"build:commonjs": "yarn nuke:commonjs && cross-env BABEL_ENV=commonjs babel $npm_package_config_dirSrc --out-dir $npm_package_config_dirCommonjs --extensions \".ts,.tsx,.js,.jsx\" --ignore \"**/*.stories.js\",\"**/story.js\",\"**/stories\",\"**/*.test.js\",\"test.js\",\"**/test\",\"**/*.md\",\"**/docs\" --source-maps inline",
"build:esm": "yarn nuke:esm && cross-env BABEL_ENV=esm babel $npm_package_config_dirSrc --out-dir $npm_package_config_dirEsm --extensions \".ts,.tsx,.js,.jsx\" --ignore \"**/*.stories.js\",\"**/story.js\",\"**/stories\",\"**/*.test.js\",\"test.js\",\"**/test\",\"**/*.md\",\"**/docs\" --source-maps inline",
"build:export-indexes": "node ./scripts/exportIndexes.js",
"build:export-src-index": "node ./scripts/exportSrcIndex.js",
"build:types:commonjs": "tsc --project tsconfig.types.cjs.json && tsconfig-replace-paths --project tsconfig.types.cjs.json",
"build:types:esm": "tsc --project tsconfig.types.esm.json && tsconfig-replace-paths --project tsconfig.types.esm.json",
"build:types": "yarn build:types:commonjs && yarn build:types:esm",
"build:variable-exports": "yarn build:export-src-index && yarn build:export-indexes",
"build": "yarn build:variable-exports && yarn build:commonjs && yarn build:esm && yarn build:types",
"dev": "concurrently \"yarn start:storybook\" \"yarn watch:variables\"",
"lint": "eslint .",
"nuke:all:install:dev": "yarn nuke:all && yarn && yarn dev",
"nuke:all:install": "yarn nuke:all && yarn",
"nuke:all": "rm -rf node_modules .cache $npm_package_config_dirBuild yarn.lock yarn-error.log package-lock.json",
"nuke:build:rebuild": "yarn nuke:build && yarn build",
"nuke:build": "rm -rf $npm_package_config_dirBuild",
"nuke:commonjs": "rm -rf $npm_package_config_dirBuild",
"nuke:esm": "rm -rf $npm_package_config_dirEsm",
"prepublishOnly": "yarn nuke:build:rebuild",
"release": "yarn release-it",
"start:storybook": "start-storybook -p $npm_package_config_portStorybook -c $npm_package_config_dirStorybook",
"storybook": "yarn start:storybook",
"watch:variables": "onchange 'src/**/*.{js,jsx,ts,tsx}' --exclude '**/{index,story}.{js,jsx,ts,tsx}' -- yarn build:variable-exports"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.5.4",
"@storybook/react": "^5.2.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.5",
"babel-plugin-add-react-displayname": "^0.0.5",
"babel-plugin-module-resolver": "^3.2.0",
"concurrently": "^4.1.1",
"cross-env": "^5.2.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"fork-ts-checker-webpack-plugin": "^1.3.7",
"fs": "^0.0.1-security",
"glob": "^7.1.4",
"onchange": "^6.0.0",
"path": "^0.12.7",
"prettier": "^2.1.2",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"release-it": "^12.3.3",
"storybook": "^1.0.0",
"styled-components": "^5.3.1",
"ts-loader": "^6.1.1",
"tsconfig-replace-paths": "^0.0.5",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.5.3",
"webpack": "^4.35.3"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.3.1"
},
"bugs": {
"url": "https://github.com/jonkwheeler/styled-velocity/issues"
},
"homepage": "https://github.com/jonkwheeler/styled-velocity#readme",
"keywords": [
"react",
"styled-components",
"css-in-js",
"ui",
"design",
"system",
"styled",
"props"
]
}