This repository has been archived by the owner on Sep 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.37 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
{
"name": "hand-in-the-air",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"dev": "webpack --watch --progress --colors --config webpack.config.js --mode=development",
"build": "webpack --progress --colors --config webpack.config.js --mode=production",
"prettier_check_src": "prettier --check src/**/*.{js,jsx}",
"prettier_check_popup": "prettier --check src/**/*.{js,jsx}",
"prettier_check_option": "prettier --check src/**/*.{js,jsx}",
"prettier_check_content": "prettier --check src/**/*.{js,jsx}",
"prettier": "yarn prettier_check_src && yarn prettier_check_popup && yarn prettier_check_option && yarn prettier_check_content",
"test:option": "mocha --timeout 10000 tests/index.js",
"prod": "yarn build && yarn test:option",
"test": "yarn build",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
},
"author": "Hitesh Saini<fxnoob71@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.4",
"eslint": "^7.6.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.20.5",
"eslint-watch": "^7.0.0",
"file-loader": "^4.2.0",
"image-webpack-loader": "^5.0.0",
"mocha": "^8.1.1",
"prettier": "1.18.2",
"prop-types": "^15.7.2",
"puppeteer": "^2.0.0",
"react-hot-loader": "^4.12.10",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@babel/runtime": "^7.5.5",
"@babel/standalone": "^7.5.5",
"@material-ui/core": "^4.3.3",
"@material-ui/icons": "^4.2.1",
"annyang": "^2.6.1",
"clsx": "^1.0.4",
"husky": "^3.0.9",
"jquery": "latest",
"oridomi": "^1.1.2",
"parse-domain": "^2.3.2",
"pretty-quick": "^2.0.0",
"query-string": "^6.8.3",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}