-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.71 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
{
"name": "@generative.fm/web-ui",
"version": "0.7.0",
"description": "Styles and components used for Generative.fm products",
"main": "dist/index.js",
"scripts": {
"test": "karma start --single-run",
"test:watch": "karma start",
"lint": "eslint src --ext \".js,.jsx\"",
"build": "babel src --out-dir dist --ignore \"src/**/*.scss\" --copy-files",
"preversion": "npm run lint && npm run test && npm run build",
"postversion": "git push && git push --tags"
},
"files": [
"dist",
"styles"
],
"repository": {
"type": "git",
"url": "git+https://github.com/generative-fm/web-ui.git"
},
"author": "Alex Bainter <alex@alexbainter.com> (https://alexbainter.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/generative-fm/web-ui/issues"
},
"homepage": "https://github.com/generative-fm/web-ui#readme",
"devDependencies": {
"@alexbainter/eslint-config": "^0.1.2",
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"karma": "^6.3.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.7",
"mocha": "^8.4.0",
"prettier": "^2.3.0"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"classnames": "^2.3.1",
"prop-types": "^15.7.2",
"react-transition-group": "^4.4.1",
"reset-css": "^5.0.1"
},
"peerDependencies": {
"@material-ui/icons": "^4.11.3",
"react": "^16 || ^17",
"react-router-dom": "^5.2.0"
},
"publishConfig": {
"access": "public"
}
}