-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.56 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.56 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
{
"name": "@generative.fm/landing",
"version": "0.2.0",
"description": "Landing page for Generative.fm",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:sw": "rollup -c rollup.sw.config.js",
"build": "npm run build:sw && node scripts/build.js && cp src/social-image.png dist/",
"start": "npm run build:sw && node scripts/serve.js",
"deploy": "node -r dotenv/config node_modules/.bin/s3-sync deploy --mutables index.html sw.js favicon.ico",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/generative-fm/landing.git"
},
"author": "Alex Bainter <alex@alexbainter.com> (https://alexbainter.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/generative-fm/landing/issues"
},
"homepage": "https://github.com/generative-fm/landing#readme",
"devDependencies": {
"@alexbainter/eslint-config": "^0.1.2",
"@alexbainter/s3-sync": "^0.4.0",
"@babel/core": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@generative-music/pieces-alex-bainter": "^5.1.1",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-json": "^4.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.19.0",
"express": "^4.17.1",
"favicons": "^6.2.0",
"html-minifier": "^4.0.0",
"node-fetch": "^2.6.1",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.38.5",
"rollup-plugin-terser": "^7.0.2",
"sharp": "^0.27.1"
},
"dependencies": {
"glob": "^7.1.6"
}
}