This repository has been archived by the owner on Nov 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.54 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@publicradiointl/pri-component-library",
"version": "0.0.0-development",
"description": "Contains a node module that exports PRI's React components.",
"main": "index.js",
"repository":
"git@github.com:PublicRadioInternational/pri-component-library.git",
"author": "PRI",
"license": "UNLICENSED",
"publishConfig": {
"access": "public"
},
"contributors": [
{
"name": "Brandon Hundt",
"email": "bhundt@pri.org"
},
{
"name": "Rick Peterman",
"email": "rpeterman@pri.org"
},
{
"name": "Patrick Coffey",
"email": "patrickcoffey48@gmail.com"
},
{
"name": "Evan Willhite",
"email": "evan@fourkitchens.com"
}
],
"engines": {
"node": ">=8.4.0"
},
"lint-staged": {
"**/*.{js,jsx,json,css}": ["prettier --write", "git add"]
},
"release": {
"verifyConditions": ["@semantic-release/npm", "@semantic-release/github"],
"publish": ["@semantic-release/npm", "@semantic-release/github"],
"success": ["@semantic-release/github"],
"fail": ["@semantic-release/github"]
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$":
"<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|svg)$": "identity-obj-proxy"
},
"setupFiles": ["<rootDir>/jest.setup.js"],
"testPathIgnorePatterns": ["<rootDir>/.next/", "<rootDir>/node_modules/"]
},
"scripts": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint --ext .jsx,.js .",
"test": "NODE_ENV=development jest --verbose --coverage --no-cache",
"snapshot": "NODE_ENV=development jest -u",
"prettier": "prettier --write \"**/*.{js,jsx,json,css}\"",
"precommit": "lint-staged && yarn lint && yarn test",
"semantic-release": "semantic-release",
"start": "NODE_ENV=development start-storybook -p 9001 -c .storybook",
"build": "NODE_ENV=production build-storybook -c .storybook -o dist",
"predeploy": "yarn build",
"deploy": "yarn deploy:ci ; gh-pages -d dist ; npm publish",
"deploy:ci":
"mkdir dist/.circleci ; cp .circleci/config.yml dist/.circleci/config.yml"
},
"devDependencies": {
"@commitlint/cli": "^6.1.2",
"@commitlint/config-angular": "^6.1.2",
"@sambego/storybook-styles": "^1.0.0",
"@semantic-release/github": "^4.0.3",
"@semantic-release/npm": "^3.2.2",
"@storybook/addon-a11y": "^3.4.8",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-viewport": "^3.4.8",
"@storybook/react": "^3.4.8",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"gh-pages": "^1.1.0",
"glob": "^7.1.2",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.2",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"react-test-renderer": "^16.2.0",
"semantic-release": "^15.0.0"
},
"dependencies": {
"@researchgate/react-intersection-observer": "^0.6.0",
"babel-plugin-macros": "^2.2.0",
"babel-polyfill": "^6.26.0",
"babel-preset-stage-0": "^6.24.1",
"classnames": "^2.2.5",
"downshift": "^1.30.0",
"intersection-observer": "^0.5.0",
"postcss-mixins": "^6.2.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}