This repository was archived by the owner on Dec 17, 2020. 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
74 lines (74 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.2 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
70
71
72
73
74
{
"name": "@srnd/topo",
"version": "0.1.6",
"description": "A React library implementing the SRND design language.",
"main": "dist/index.js",
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.11",
"@srnd/topocons": "^1.1.1",
"@srnd/topomoji": "^1.0.0",
"clean-tag": "^1.0.4",
"lodash": "^4.17.11",
"prop-types": "^15.7.2",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-dom-confetti": "^0.1.1",
"react-intl": "^2.9.0",
"react-scripts": "^3.0.1",
"serve": "^10.1.2",
"styled-components": "^4.1.3",
"styled-system": "^3.2.1",
"typescript": "^3.3.3",
"webpack": "^4.29.5"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@doctoright/babel-plugin-react-intl": "^2.4.1",
"@dump247/storybook-state": "^1.5.2",
"@storybook/addon-a11y": "^5.0.11",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-info": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addon-notes": "^5.0.11",
"@storybook/addon-storysource": "^5.0.11",
"@storybook/addon-viewport": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"babel-loader": "^8.0.5",
"email-validator": "^2.0.4",
"husky": "^2.2.0",
"lorem-ipsum": "^2.0.2",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0"
},
"scripts": {
"dev": "start-storybook -p 6006",
"prepare": "babel src -d dist --ignore __tests__ && yarn run copy:assets && yarn run fmt",
"copy:assets": "cp ./src/Loading/*.gif ./dist/Loading/ && cp ./src/Loading/*.svg ./dist/Loading/",
"fmt": "prettier {.storybook,src}/**/*.js --write",
"build:i18n": "NODE_ENV=production babel ./src --out-file /dev/null"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "gitssh://git@github.com/SRND/Topo.git"
},
"keywords": [
"design",
"srnd"
],
"author": "Tyler Menezes",
"license": "Artistic-2.0",
"bugs": {
"url": "https://github.com/SRND/Topo/issues"
},
"homepage": "https://github.com/SRND/Topo#readme"
}