forked from CouncilDataProject/cdp-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
149 lines (149 loc) · 5.01 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "@councildataproject/cdp-frontend",
"engines": {
"node": "12.x",
"npm": "6.x"
},
"version": "3.0.0",
"description": "Front-end tooling library for React components for CDP instance deployments.",
"main": "lib/index.js",
"module": "es/index.js",
"browser": "dist/index.js",
"types": "type-declarations",
"scripts": {
"start": "snowpack dev --polyfill-node",
"build": "npm-run-all --print-label clean --parallel bundle transpile:commonjs transpile:es generateTypes",
"bundle": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"clean": "rimraf es lib dist type-declarations",
"format": "prettier --write src/**/*",
"checkFormat": "prettier --check src/**/*.tsx",
"generateTypes": "tsc -p tsconfig.base.json --emitDeclarationOnly",
"localize": "node localize",
"lint": "eslint src/**/*.{ts,tsx}",
"test": "jest --verbose --coverage",
"transpile:commonjs": "cross-env TS_NODE_PROJECT=tsconfig.commonjs.json BABEL_ENV=commonjs babel src --out-dir lib --extensions .ts,.tsx,.js,.jsx --ignore 'src/**/*.test.ts','src/**/*.stories.tsx'",
"transpile:es": "cross-env TS_NODE_PROJECT=tsconfig.es.json babel src --out-dir es --extensions .ts,.tsx,.js,.jsx --copy-files --ignore 'src/**/*.test.ts','src/**/*.stories.tsx'",
"typeCheck": "tsc --noEmit",
"storybook": "start-storybook -p 6006",
"build-storybook-docs": "build-storybook",
"deploy-storybook-docs": "gh-pages -d storybook-static",
"bumpversion-patch": "npm version patch -m 'Bump version: %s'",
"bumpversion-minor": "npm version minor -m 'Bump version: %s'",
"bumpversion-major": "npm version major -m 'Bump version: %s'"
},
"files": [
"es",
"lib",
"dist",
"type-declarations",
"README.md",
"package.json"
],
"publishConfig": {
"access": "public"
},
"author": "To Huynh, Brian Ledbetter, Hawk Ticehurst, Nic Weber, Jackson Maxfield Brown",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@storybook/addon-a11y": "^6.4.4",
"@storybook/addon-essentials": "^6.4.4",
"@storybook/addon-links": "^6.4.4",
"@storybook/react": "^6.4.4",
"@storybook/theming": "^6.4.4",
"@testing-library/react-hooks": "^3.2.1",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/eslint": "^7.29.0",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.172",
"@types/react": "^16.14.5",
"@types/react-dom": "^16.9.5",
"@types/react-highlight-words": "^0.16.2",
"@types/react-responsive": "^8.0.2",
"@types/react-router-dom": "^5.1.7",
"@types/react-virtualized": "^9.21.11",
"@types/stopword": "^1.0.2",
"@types/video.js": "^7.3.26",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-loader": "~8.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.2",
"dotenv-webpack": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^5.3.2",
"husky": "~3.1",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^7.0.1",
"jest": "^26.6.3",
"lint-staged": "~9.4",
"mini-css-extract-plugin": "^1.3.8",
"npm-run-all": "~4.1",
"nyc": "^15.1.0",
"postcss": "^8.3.9",
"postcss-loader": "^6.1.1",
"prettier": "^2.0.5",
"react": "^16.14.0",
"react-dom": "^16.13.0",
"rimraf": "~3.0",
"snowpack": "^3.2.2",
"ts-jest": "^26.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.5.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.9.1"
},
"peerDependencies": {
"react": "^16.0"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@councildataproject/cdp-design": "^1.0.2",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mozilla-protocol/core": "^13.0.1",
"firebase": "^9.5.0",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"n-gram": "^2.0.1",
"query-string": "^7.0.1",
"react-highlight-words": "^0.17.0",
"react-localization": "^1.0.17",
"react-responsive": "^9.0.0-beta.5",
"react-router-dom": "^5.2.0",
"react-virtualized": "^9.22.3",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"stemr": "^1.0.0",
"stopword": "^1.0.11",
"video.js": "^7.14.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CouncilDataProject/cdp-frontend.git"
},
"keywords": [
"civic technology",
"open government",
"data access"
],
"bugs": {
"url": "https://github.com/CouncilDataProject/cdp-frontend/issues"
},
"homepage": "https://github.com/CouncilDataProject/cdp-frontend"
}