forked from primer/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.44 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
{
"name": "@primer/components",
"version": "8.2.0-beta",
"description": "Primer react components",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"scripts": {
"dev": "next dev",
"prebuild": "npm run dist",
"build": "next build",
"start": "next start",
"predist": "rm -rf dist",
"dist": "NODE_ENV=production rollup -c",
"postdist": "du -ha dist",
"prepack": "script/npm-prepack",
"prepublishOnly": "npm run dist",
"lint": "eslint src pages codemods",
"test": "jest",
"watch": "jest --watch --no-coverage"
},
"repository": "primer/components",
"keywords": [
"react",
"components",
"library",
"design-system"
],
"files": [
"css.js",
"codemods",
"dist",
"src",
"!src/__tests__",
"!src/utils"
],
"author": "GitHub, Inc.",
"license": "MIT",
"dependencies": {
"@githubprimer/octicons-react": "8.1.2",
"babel-plugin-macros": "2.4.2",
"classnames": "^2.2.5",
"d3-shape": "^1.2.0",
"nanoid": "2.0.0",
"primer-colors": "1.0.1",
"primer-markdown": "3.7.9",
"primer-typography": "1.0.1",
"react": "16.4.2",
"react-dom": "16.4.2",
"styled-components": "4.1.2",
"styled-system": "3.1.3",
"system-components": "3.0.1"
},
"devDependencies": {
"@mdx-js/loader": "0.15.0",
"@mdx-js/mdx": "0.15.0",
"@mdx-js/tag": "0.15.0",
"@svgr/webpack": "2.4.1",
"@zeit/next-mdx": "1.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-plugin-add-react-displayname": "0.0.5",
"enzyme": "3.5.1",
"enzyme-adapter-react-16": "1.5.0",
"eslint": "4.19.1",
"eslint-plugin-github": "1.0.0",
"eslint-plugin-jest": "21.15.1",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.8.2",
"fs-extra": "7.0.0",
"globby": "8.0.1",
"jest": "23.5.0",
"jest-styled-components": "6.3.1",
"jscodeshift": "0.5.1",
"mdx-live": "2.0.0-alpha.2",
"next": "7.0.2",
"next-compose-plugins": "2.1.1",
"next-page-map": "0.1.0",
"node-sass": "4.9.3",
"primer-forms": "2.1.4",
"primer-layout": "1.4.9",
"primer-module-build": "1.0.5",
"primer-navigation": "1.5.7",
"primer-tooltips": "1.5.7",
"primer-utilities": "4.12.0",
"raw-loader": "0.5.1",
"react-router-dom": "^4.3.1",
"react-test-renderer": "^16.3.2",
"rollup": "0.62.0",
"rollup-plugin-babel": "4.0.0-beta.8",
"rollup-plugin-commonjs": "9.1.3",
"sass.macro": "0.1.0"
}
}