-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
141 lines (141 loc) · 4.79 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "reacting-squirrel",
"version": "1.2.0",
"description": "React and Express framework for creating web apps.",
"main": "./app/index.js",
"types": "./app/index.d.ts",
"scripts": {
"test": "./node_modules/.bin/mocha __tests__/cases/server __tests__/cases/app --recursive --require @babel/register --require ignore-styles --exit",
"test:app:compile": "./node_modules/.bin/babel ./__tests__app__/dev/src --out-dir ./__tests__app__/dev/dist",
"test:app:start": "node -r dotenv/config -r source-map-support/register ./__tests__app__/dev/dist/index.js",
"test:app": "npm run build_es6 && npm run test:app:compile && npm run test:app:start",
"test:bundle": "npm run build_es6 && npm run test:app:compile && node -r source-map-support/register ./cli/bundle.js --rsConfig=./__tests__app__/dev/rsconfig.json",
"posttest": "rm -rf ./__tests__/app/~rs && rm -rf ./__tests__/app/pages && rm -rf ./__tests__/app/components && rm -rf ./__tests__/public",
"build_es6": "./node_modules/.bin/babel ./src --out-dir ./ --copy-files",
"clear": "rm -rf ./app && rm -rf ./server && rm -rf ./cli",
"prepublishOnly": "npm run build_es6",
"postpublish": "npm run clear",
"docs:generate": "./node_modules/.bin/typedoc --out docs --entryPointStrategy expand ./src --excludeExternals",
"docs": "rm -rf ./docs && npm run docs:generate && touch ./docs/.nojekyll",
"preversion": "git branch %npm_package_version% && git checkout %npm_package_version%",
"eslint": "./node_modules/.bin/eslint ./src",
"eslint:server": "./node_modules/.bin/eslint ./src/server",
"eslint:app": "./node_modules/.bin/eslint ./src/app"
},
"author": "Lukáš Mačuda <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-proposal-decorators": "^7.20.2",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.18.6",
"@babel/plugin-transform-async-to-generator": "^7.18.6",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@types/express": "^4.17.14",
"@types/node": "^20.17.6",
"args-parser": "^1.3.0",
"async": "^2.6.4",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.3.0",
"cli-progress": "^3.11.2",
"combine-styles-processor": "^3.0.0",
"compression": "^1.7.4",
"cookie": "^0.5.0",
"cookie-parser": "^1.4.6",
"cookie-signature": "^1.2.0",
"css-loader": "^6.7.2",
"express": "^4.18.2",
"extra-watch-webpack-plugin": "^1.0.3",
"html-to-react": "^1.5.0",
"http-smart-error": "^4.0.1",
"loader-utils": "^3.2.1",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"mkdirp": "^1.0.4",
"msgpack-lite": "^0.1.26",
"postcss": "^8.4.19",
"postcss-loader": "^6.2.1",
"prop-types": "^15.8.1",
"querystring": "^0.2.1",
"react-dom": "^18.3.1",
"route-parser": "0.0.5",
"runtime-type": "^4.1.1",
"sass": "^1.80.5",
"sass-loader": "^12.6.0",
"smart-error": "^3.0.0",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"style-loader": "^3.3.1",
"texting-squirrel": "^1.1.0",
"ts-loader": "^9.4.1",
"typescript": "^5.6.3",
"uniqid": "^5.4.0",
"universal-cookie": "^7.2.2",
"url": "^0.11.0",
"webpack": "^5.75.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/register": "^7.18.9",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/material": "^6.1.8",
"@types/react": "^18.3.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"bootstrap": "^4.6.2",
"chai": "^4.3.7",
"chai-enzyme": "^1.0.0-beta.1",
"cheerio": "1.0.0-rc.3",
"dotenv": "^16.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"eslint": "^8.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"ignore-styles": "^5.0.1",
"jsdom": "^19.0.0",
"mocha": "^10.8.1",
"react": "^18.3.1",
"react-bootstrap": "^1.6.6",
"react-gtm-module": "^2.0.10",
"react-test-renderer": "^17.0.2",
"request": "^2.88.2",
"run-script-os-fix": "^1.0.4",
"source-map-support": "^0.5.21",
"typedoc": "^0.26.10"
},
"peerDependencies": {
"@types/react": "^18.0.39",
"react": "^18.0.2"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zabkwak/reacting-squirrel.git"
},
"bugs": {
"url": "https://github.com/zabkwak/reacting-squirrel/issues"
},
"homepage": "https://zabkwak.github.io/reacting-squirrel",
"keywords": [
"react",
"express",
"socket.io",
"framework"
],
"readme": "README.md",
"bin": {
"rs-start-server": "./cli/server.js",
"rs-bundle": "./cli/bundle.js"
}
}