-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
111 lines (111 loc) · 3.43 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
{
"name": "@quintype/components",
"version": "3.8.4",
"description": "Components to help build Quintype Node.js apps",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/quintype/quintype-node-components.git"
},
"keywords": [
"quintype"
],
"files": [
"/dist"
],
"author": "Quintype Developers <dev-core@quintype.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/quintype/quintype-node-components/issues"
},
"homepage": "https://github.com/quintype/quintype-node-components#readme",
"dependencies": {
"@babel/runtime": "^7.16.3",
"@brightcove/react-player-loader": "^1.4.2",
"classnames": "^2.3.1",
"empty-web-gif": "^1.0.1",
"get-video-id": "^3.4.3",
"get-youtube-id": "^1.0.1",
"papaparse": "^5.3.1",
"prop-types": "^15.7.2",
"quintype-js": "^1.2.1",
"react": "^16.14.0",
"react-dailymotion": "^0.4.1",
"react-dfp": "quintype/react-dfp",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.6",
"react-youtube": "^7.13.1",
"redux": "^4.1.2",
"wretch": "^1.7.6"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-external-helpers": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^27.3.1",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-quintype-assets": "^1.1.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"better-docs": "^2.3.2",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-standard": "^4.1.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-dom": "^3.2.2",
"jsdoc": "^3.6.7",
"lint-staged": "^11.2.6",
"onchange": "^7.1.0",
"parcel-bundler": "^1.12.4",
"prettier": "2.4.1",
"react-dom": "^16.14.0",
"react-testing-library": "^7.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.59.0",
"rollup-plugin-babel": "^4.3.2",
"standard-version": "^9.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"npx eslint --fix",
"git add"
]
},
"peerDependencies": {
"lodash": "^4.17.21"
},
"scripts": {
"build:cjs": "npx rollup -c",
"build:es": "npx babel src/ --out-dir dist/es --ignore '**/*.spec.js' --ignore '**/*.snap'",
"build": "npm run clean:dist && npm run build:cjs && npm run build:es",
"clean:dist": "rimraf dist",
"docs": "rimraf docs && jsdoc -c jsdoc.json",
"prepack": "npm run build",
"prepublishOnly": "./bin-dev-scripts/standard-version-release.sh",
"sync-files-to": "npx onchange --verbose --await-write-finish=2000 'src/**/*' -- ./bin-dev-scripts/sync-to.sh",
"test": "jest --config jest.config.js",
"test:cover": "jest --coverage --watchAll; open coverage/index.html"
}
}