-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.42 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
{
"name": "flapjs",
"version": "0.5.0",
"description": "Flap.js Web App",
"private": true,
"browser": "main.js",
"scripts": {
"start": "webpack-dev-server --config=webpack.config.js --env=development",
"build": "webpack --config=webpack.config.js --env=production",
"build-storybook": "build-storybook -c .storybook -o \"docs/storybook\"",
"test": "jest --config \".jest/config.js\" --runInBand",
"test-precommit": "lint-staged",
"lint": "npm run lint-js && npm run lint-css",
"lint-js": "eslint \"src/\" --ext \".js\" --ext \".jsx\"",
"lint-css": "stylelint \"src/**/*.css\"",
"storybook": "start-storybook",
"setup-vscode": "node tools/vscode/setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flapjs/webapp.git"
},
"bugs": {
"url": "https://forms.gle/cyQFU9Ckgs5mr8D4A"
},
"homepage": "https://github.com/flapjs/webapp#readme",
"author": "Flap.js Team",
"license": "MIT",
"dependencies": {
"@ctrl/tinycolor": "^3.1.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-react": "^7.10.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.1",
"@storybook/addon-docs": "^6.0.20",
"@storybook/react": "^6.0.20",
"@svgr/webpack": "^5.4.0",
"@types/jest": "^26.0.7",
"autoprefixer": "^9.8.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.2.2",
"enquirer": "^2.3.6",
"eslint": "^7.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-compat": "^3.8.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"file-loader": "^6.0.0",
"html-webpack-inline-source-only-plugin": "^1.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"mini-css-extract-plugin": "^0.11.0",
"postcss-loader": "^3.0.0",
"raw-loader": "^4.0.1",
"react-is": "^16.13.1",
"react-refresh": "^0.8.3",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.2",
"workbox-webpack-plugin": "^5.1.3"
}
}