This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
65 lines (65 loc) · 1.81 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
{
"name": "@meetalva/alva-design",
"version": "1.6.3",
"description": "Every component used for the official Alva website",
"alva": {
"name": "Alva Website Design",
"color": "#1E2024",
"image": "https://media.meetalva.io/library/alva-design/image.svg"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"start": "npm run build && concurrently 'npm run build -- -w' 'patternplate start'",
"build": "tsc",
"build:components": "patternplate build --out=.tmp --base=/",
"clean": "rm -rf lib/patterns",
"clean-build": "npm run clean && npm run build",
"commit": "commit",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meetalva/alva-design.git"
},
"author": {
"email": "[email protected]",
"name": "Meet Alva Team",
"url": "https://meetalva.io/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/meetalva/alva-design/issues"
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/prompt-cli": "^7.1.2",
"@commitlint/travis-cli": "^7.1.2",
"@patternplate/cli": "^3.2.5",
"@patternplate/render-react": "^3.2.5",
"concurrently": "^3.5.1",
"husky": "^0.14.3",
"node-fetch": "^2.3.0",
"semantic-release": "^15.13.2",
"surge": "^0.20.1",
"typescript": "^3.0.3",
"yargs-parser": "^11.1.1"
},
"dependencies": {
"@emotion/core": "^10.0.6",
"@emotion/styled": "^10.0.6",
"@types/node": "^8.0.53",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"@types/react-helmet": "^5.0.7",
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-feather": "^1.1.0",
"react-helmet": "^5.2.0",
"tslib": "^1.7.0"
}
}