This repository was archived by the owner on May 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 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
{
"name": "@ht2-labs/mural",
"version": "1.0.0",
"description": "Demonstrates ht2-labs with mural.",
"repository": {
"type": "git",
"url": "https://github.com/ht2-labs/mural"
},
"main": "dist/index.js",
"author": "ht2-labs",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "npm run clean && parcel src/index.html",
"lint": "tslint --project ./tsconfig.json",
"duplication": "jscpd",
"clean": "rimraf dist .cache",
"semantic-release": "ht2-release-public-circleci-lib-dist",
"build-ghpages": "npm run clean && parcel build src/index.html --public-url ./",
"deploy-ghpages": "node scripts/ghpages.js",
"ghpages": "npm run build-ghpages && npm run deploy-ghpages"
},
"dependencies": {
"polished": "^2.0.0",
"prop-types": "^15.6.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-focus-trap": "^2.6.0",
"styled-components": "^3.3.0"
},
"devDependencies": {
"@ht2-labs/semantic-release": "^2.0.86",
"@ht2-labs/typescript-project": "2.0.15",
"@reach/router": "1.2.1",
"@types/prop-types": "15.7.3",
"@types/reach__router": "1.2.5",
"@types/react": "16.9.4",
"@types/react-dom": "16.9.1",
"gh-pages": "1.2.0",
"jscpd": "0.6.25",
"parcel-bundler": "1.12.3",
"react-syntax-highlighter": "8.1.0",
"rimraf": "2.7.1",
"typescript": "3.6.3"
},
"publishConfig": {
"access": "public"
}
}