-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.48 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": "battleblocks",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "webpack-dev-server -- --config ./webpack.config.js --mode development",
"build": "webpack --mode production",
"stylelint": "stylelint '**/*.{scss,css}' --no-fix",
"stylelintAndFix": "stylelint '**/*.{scss,css}' --fix"
},
"dependencies": {
"@onflow/fcl": "^0.0.78",
"@paypal/react-paypal-js": "^7.8.2",
"@react-oauth/google": "^0.7.0",
"axios": "^0.27.2",
"luxon": "^3.2.1",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.1"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@onflow/types": "^1.0.5",
"@types/luxon": "^3.2.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"dotenv-webpack": "^8.0.1",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-module-resolver": "^1.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"html-webpack-plugin": "^5.5.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"prettier": "^2.2.0",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"stream-http": "^3.2.0",
"style-loader": "^3.3.1",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-prettier-scss": "0.0.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-high-performance-animation": "^1.7.0",
"stylelint-order": "^6.0.1",
"stylelint-scss": "^4.3.0",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.9.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"volta": {
"node": "18.13.0",
"npm": "8.19.3"
}
}