-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.43 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
{
"name": "@all-turtles/components",
"version": "1.2.0",
"description": "Reusable React components for building All Turtles projects",
"main": "./dist/index.js",
"files": [
"/dist"
],
"moduleRoots": [
"src",
"node_modules"
],
"scripts": {
"build": "cross-env NODE_ENV=production OUTPUT_TYPE=library node scripts/build.js",
"start": "cross-env NODE_ENV=development OUTPUT_TYPE=app node scripts/start.js",
"watch": "cross-env NODE_ENV=production OUTPUT_TYPE=library node scripts/watch.js",
"storybook": "start-storybook -s .storybook/images",
"build-storybook": "build-storybook -s .storybook/images",
"storybook:deploy": "storybook-to-ghpages",
"lint:fix": "eslint src/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/All-Turtles/components.git"
},
"author": "Ryan Warner (https://github.com/RyanWarner)",
"bugs": {
"url": "https://github.com/All-Turtles/components/issues"
},
"homepage": "https://github.com/All-Turtles/components#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"peerDependencies": {
"react": ">=17.0.1",
"react-dom": ">=17.0.1"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-decorators": "7.14.5",
"@babel/plugin-proposal-export-default-from": "7.14.5",
"@babel/plugin-proposal-export-namespace-from": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.14.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-export-namespace-from": "7.8.3",
"@babel/plugin-transform-modules-commonjs": "7.14.5",
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/preset-env": "7.14.5",
"@babel/preset-react": "7.14.5",
"@babel/register": "7.14.5",
"@babel/runtime": "7.14.6",
"@storybook/addon-docs": "6.1.21",
"@storybook/react": "6.2.9",
"@storybook/storybook-deployer": "2.8.10",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"babel-plugin-named-asset-import": "0.3.7",
"babel-plugin-styled-components": "1.12.0",
"case-sensitive-paths-webpack-plugin": "2.4.0",
"chalk": "4.1.1",
"core-js": "3.15.0",
"cross-env": "7.0.3",
"css-loader": "5.2.6",
"dotenv-webpack": "7.0.3",
"eslint": "7.29.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-react": "11.0.1",
"eslint-loader": "4.0.2",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-standard": "5.0.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.3.1",
"image-webpack-loader": "7.0.1",
"mini-css-extract-plugin": "1.6.0",
"node-watch": "0.7.1",
"plop": "2.7.4",
"react": "17.0.2",
"react-dev-utils": "11.0.4",
"react-dom": "17.0.2",
"regenerator-runtime": "0.13.7",
"rimraf": "3.0.2",
"stats-webpack-plugin": "0.7.0",
"style-loader": "2.0.0",
"styled-components": "5.3.0",
"url-loader": "4.1.1",
"webpack": "5.40.0",
"webpack-bundle-analyzer": "4.4.2",
"webpack-cli": "4.7.2",
"webpack-dev-server": "3.11.2",
"webpack-hot-middleware": "2.25.0",
"webpack-manifest-plugin": "3.1.1",
"webpack-node-externals": "3.0.0"
}
}