This repository was archived by the owner on Jan 22, 2026. 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
69 lines (69 loc) · 1.87 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.87 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
{
"name": "@glitchdotcom/shared-components",
"author": "Glitch Product Engineering <eng@glitch.com>",
"version": "0.22.6",
"description": "Shared components",
"main": "build/main.js",
"module": "build/module.js",
"files": [
"build/main.js",
"build/module.js"
],
"engines": {
"node": ">=12.x"
},
"scripts": {
"serve": "node server/index.js",
"rollup": "rollup lib/index.js -c",
"rollup:watch": "rollup lib/index.js -cw",
"prettify": "prettier --write './{lib,server,test}/**/*.js'",
"lint": "eslint .",
"changelog": "node server/changelog.js",
"check-changelog": "node server/check-changelog.js",
"start": "npm run serve",
"test": "npm run lint",
"prepublishOnly": "npm test && npm run rollup",
"postversion": "npm run changelog",
"release": "auto shipit --base-branch=master"
},
"dependencies": {
"babel-eslint": "^10.1.0",
"dotenv": "^8.2.0",
"prop-types": "15.x",
"styled-css-grid-v5": "^0.0.0-development",
"twemoji-parser": "^13.1.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"styled-components": ">=5.2.1"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"auto": "11.x",
"babel-plugin-styled-components": "1.10.5",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-scope": "^5.0.0",
"express": "4.16.4",
"prettier": "^1.18.2",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3",
"styled-components": ">=5.2.1"
},
"repository": {
"url": "https://github.com/glitchdotcom/shared-components"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}