This repository has been archived by the owner on May 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
100 lines (100 loc) · 3.44 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
{
"name": "StadiaPlus",
"version": "1.0.0",
"description": "",
"main": "modules/main/src/index.ts",
"targets": {
"extension": {
"distDir": "./dist/main"
},
"popup": {
"distDir": "./dist/popup",
"publicUrl": "./"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"zip": "copyfiles dist/**/*.* background.js images/**/*.* manifest.json temp && cross-zip temp && copyfiles temp.zip bin && del-cli temp && del-cli temp.zip",
"clean": "del-cli dist/**/*.*",
"build@main": "parcel build --target extension --no-cache modules/main/src/index.tsx",
"build@popup": "parcel build --target popup --no-cache modules/popup/src/index.html",
"build": "npm run clean && npm run build@main && npm run build@popup && npm run zip",
"build:dev@main": "parcel build --target extension --cache-dir .build_cache/main modules/main/src/index.tsx",
"build:dev@popup": "parcel build --target popup --cache-dir .build_cache/popup modules/popup/src/index.html",
"build:dev": "npm run build:dev@main && npm run build:dev@popup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mafrans/StadiaPlus.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mafrans/StadiaPlus/issues"
},
"homepage": "https://github.com/Mafrans/StadiaPlus#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@parcel/transformer-image": "^2.0.0-beta.3.1",
"@parcel/transformer-inline-string": "^2.0.0-beta.3.1",
"@types/react": "^17.0.0",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/react-transition-group": "^4.4.0",
"@types/styled-components": "^5.1.7",
"babel-plugin-macros": "^3.0.1",
"copyfiles": "^2.4.1",
"cross-zip-cli": "^1.0.0",
"cssnano": "^4.1.10",
"del-cli": "^4.0.0",
"gzip-cli": "^1.2.0",
"sass": "^1.32.5",
"tailwind.macro": "^0.5.10",
"typescript": "^4.1.3"
},
"browserslist": [
"last 2 Chrome versions"
],
"dependencies": {
"@fontsource/material-icons": "^4.1.0",
"@fontsource/overpass": "^4.2.2",
"@reduxjs/toolkit": "^1.6.1",
"@tailwindcss/postcss7-compat": "^2.0.2",
"@types/chrome": "0.0.128",
"@types/react-redux": "^7.1.18",
"@types/victor": "^1.1.0",
"autoprefixer": "^9.8.6",
"babel-plugin-tailwind-components": "^0.5.10",
"classnames": "^2.3.1",
"mobx": "^6.3.2",
"mobx-react": "^7.2.0",
"parcel": "^2.0.0-beta.3.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-inliner": "^1.0.16",
"parcel-plugin-text": "^0.9.7",
"parcel-plugin-url-loader": "^1.3.1",
"postcss": "^8.1.14",
"postcss-modules": "^4.2.2",
"react": "^17.0.1",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"react-md-spinner": "^1.0.0",
"react-redux": "^7.2.4",
"react-reorder": "^3.0.0-alpha.7",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"reset-css": "^5.0.1",
"styled-components": "^5.2.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.2",
"twin.macro": "^2.2.3",
"victor": "^1.1.0"
}
}