-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.31 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.31 KB
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
{
"name": "slideshowoff",
"title": "Slide Show-Off",
"version": "0.0.1ɑ",
"type": "module",
"author": {
"email": "robertjan.tuit@gmail.com",
"name": "RJ Tuit"
},
"main": "bin/index.js",
"scripts": {
"start": "node --experimental-specifier-resolution=node --no-warnings bin/src/index.js",
"start:node": "yarn start",
"start:web": "node ./build/serve.web.js",
"build": "yarn build:web & yarn build:node",
"build:node": "node ./build/build.node.js",
"build:web": "node ./build/build.web.js",
"build-start:node": "yarn build:node & yarn start:node",
"build-start:web": "yarn build:web & yarn start:web",
"build-watch:node": "node ./build/build.watch.node.js",
"build-watch:web": "node ./build/build.watch.web.js",
"lint": "npx eslint",
"lint:fix": "npx eslint fix",
"typesync": "npx typesync",
"generate-feed-type": "node ./node_modules/maketypes/index.js -i src/bingImageFeed.interface.ts -p src/bingImageFeed.validator.ts ./examples/feed.json IBingImageOfTheDayFeed"
},
"devDependencies": {
"@craftamap/esbuild-plugin-html": "^0.2.1",
"@types/eslint": "^8.2.2",
"@types/express": "^4.17.13",
"@types/ffmpeg": "^1.0.4",
"@types/gradient-string": "^1.1.2",
"@types/inquirer": "^8.1.3",
"@types/nodemon": "^1.19.1",
"@types/prettier": "^2.4.3",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/rimraf": "^3.0.2",
"@types/tsc-watch": "^4.2.0",
"autoprefixer": "^10.4.2",
"chokidar": "^3.5.3",
"esbuild": "^0.14.13",
"eslint": "^8.7.0",
"execa": "^6.0.0",
"maketypes": "git+https://github.com/RobertjanTuit/MakeTypes",
"nodemon": "^2.0.15",
"postcss": "^8.4.5",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.15",
"tsc-watch": "^4.6.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"typesync": "^0.8.0"
},
"dependencies": {
"chalk": "^5.0.0",
"commander": "^8.3.0",
"consola": "^2.15.3",
"epxress": "^0.0.1-security",
"express": "^4.17.2",
"ffmpeg": "^0.0.4",
"gradient-string": "^2.0.0",
"inquirer": "^8.2.0",
"node-fetch": "^3.1.1",
"prettier": "^2.5.1",
"promise-any": "^0.2.0",
"puppeteer": "^13.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.4.1"
}
}