-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
{
"name": "react-quiz-component",
"version": "0.4.0",
"description": "React Quiz Component",
"main": "lib/Quiz.js",
"scripts": {
"dev": "concurrently \"npm run lib:watch\" \"npm run docs\"",
"lib": "babel src/lib -d lib --copy-files",
"lib:watch": "babel src/lib -w -d lib --copy-files",
"docs": "webpack-dev-server --mode development",
"docs:prod": "webpack --mode production",
"lint": " ./node_modules/.bin/eslint src --ext .jsx --ext .js --fix"
},
"keywords": [
"react",
"reactjs",
"react-quiz-component",
"react-quiz",
"quiz"
],
"license": "MIT",
"peerDependencies": {
"react": "^15.3.0 || ^16.2.0",
"react-dom": "^15.3.0 || ^16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"concurrently": "^3.5.1",
"css-loader": "^3.4.2",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "5.3.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.0",
"style-loader": "^0.21.0",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"author": "WONG, Wing Kam <[email protected]>",
"homepage": "https://github.com/wingkwong/react-quiz-component",
"repository": {
"type": "git",
"url": "https://github.com/wingkwong/react-quiz-component.git"
},
"dependencies": {
"@webpack-cli/serve": "^1.6.1",
"dompurify": "^2.0.8",
"marked": "4.0.10"
}
}