This repository has been archived by the owner on Apr 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.28 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
{
"name": "@lostmyname/style-guide",
"version": "5.0.3",
"description": "A set of standards for the writing, formatting and design which establishes requirements that improve communication and consistancy across Wonderbly.",
"repository": "https://github.com/Lostmyname/style-guide",
"homepage": "http://wbly-style-guide.herokuapp.com",
"author": "Wonderbly Engineering",
"license": "MIT",
"files": [
"lib/**/*"
],
"dependencies": {
"@babel/polyfill": "^7.8.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"babel-plugin-module-resolver": "^4.0.0",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.2.0",
"http-server": "^0.12.1",
"lodash": "^4.17.15",
"markdown-to-jsx": "^6.10.3",
"node-sass": "^4.13.0",
"polished": "^3.4.2",
"prismjs": "^1.17.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet-async": "^1.0.4",
"react-scripts": "3.3.0",
"react-simple-code-editor": "^0.10.0",
"react-styleguidist": "^10.2.1",
"react-tabs": "^3.0.0",
"react-viewport-utils": "^1.11.0",
"strip-html-comments": "^1.0.0",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"babel-plugin-styled-components": "^1.10.6",
"prop-types": "^15.7.2"
},
"scripts": {
"start": "styleguidist server",
"test": "react-scripts test",
"build": "styleguidist build",
"build:run": "yarn build && http-server ./styleguide -d false",
"tool:build": "rm -rf lib && babel src --out-dir ./ && cp -a ./src/lib/assets ./lib",
"postversion": "yarn tool:build && npm publish && rm -rf lib && git push && git push --tags"
},
"eslintConfig": {
"extends": "react-app",
"overrides": [
{
"files": [
"src/**/*"
],
"rules": {
"react/no-typos": 0
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}