This repository has been archived by the owner on Aug 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 2.78 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "muteswan",
"version": "0.8.9",
"description": "🦢",
"main": "",
"scripts": {
"rollup:prod": "NODE_ENV=production npx rollup -c",
"rollup:dev": "NODE_ENV=development npx rollup -c",
"templates:prod": "NODE_ENV=production npx babel-node src/build.js",
"templates:dev": "NODE_ENV=development npx babel-node src/build.js",
"build:prod": "npm run templates:prod && npm run rollup:prod",
"build:dev": "npm run templates:dev && npm run rollup:dev",
"build": "npm run build:dev",
"deploy": "npm run build:prod && netlify deploy",
"serve": "http-server --proxy http://muteswan.localhost:8080\\? ./public",
"test": "npx xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbushell/muteswan.git"
},
"keywords": [
"🦢"
],
"author": {
"name": "David Bushell",
"url": "https://dbushell.com"
},
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/dbushell/muteswan/issues"
},
"homepage": "https://github.com/dbushell/muteswan#readme",
"dependencies": {
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.4",
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"core-js": "^3.19.0",
"csso": "^4.2.0",
"immer": "^9.0.6",
"node-sass": "^6.0.1",
"preact": "^10.5.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-persist": "^6.0.0",
"rollup": "^2.58.3",
"rollup-plugin-terser": "^7.0.2"
},
"devDependencies": {
"eslint-config-xo": "^0.39.0",
"eslint-config-xo-react": "^0.25.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"xo": "^0.46.3"
},
"babel": {
"plugins": [
"@babel/plugin-transform-runtime"
],
"presets": [
[
"@babel/preset-react"
],
[
"@babel/preset-env",
{
"debug": false,
"bugfixes": true,
"targets": {
"esmodules": true
}
}
]
]
},
"xo": {
"space": true,
"prettier": true,
"globals": [
"window"
],
"extends": [
"xo-react"
],
"ignores": [
"./*.js",
"src/templates",
"src/build.js",
"node_modules",
"public",
"twa"
],
"rules": {
"react/prop-types": [
"warn",
{
"skipUndeclared": true
}
],
"react/jsx-curly-brace-presence": [
"error",
"ignore"
]
}
}
}