-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 3.16 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
{
"name": "vose",
"version": "3.1.0",
"description": "Reddit Video App",
"private": true,
"main": "index.js",
"scripts": {
"start": "nodemon -T -r esm -r dotenv/config src/main.server.development.ts & parcel watch src/main.client.development.tsx -d .public",
"production": "rm -r .public .server; NODE_ENV=production parcel build src/main.html --no-source-maps -d .public && NODE_ENV=production parcel build src/main.server.tsx --no-source-maps --target node -d .server",
"test:production": "rm -r .public; NODE_ENV=production parcel build src/main.html --no-source-maps -d .public && NODE_ENV=production parcel build src/main.server.tsx --no-source-maps --target node -d .server && NODE_ENV=production node -r dotenv/config ./.server/main.server.js",
"update-stats": "npx browserslist-ga",
"lint": "tsc --noEmit",
"deploy": "NODE_ENV=production yarn production && mv .public/parcel-manifest.json .server/ && rm .public/*.html && cp package.json .server/ && cp ecosystem.config.js .server/ && rsync -avzrt --update --delete .server/ vose:/home/vose/app && rsync -avzrt --update --delete .public/ vose:/var/www/vose.tv/html && ssh vose 'cd ~/app && yarn --production && pm2 restart vose.tv'",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Simon Laroche <[email protected]> (https://simon.lc/)",
"license": "MIT",
"dependencies": {
"@reach/menu-button": "0.8.5",
"@simonlc/menu-button": "0.1.9",
"@simonlc/youtube-player": "6.0.0",
"dotenv": "8.2.0",
"express": "4.17.1",
"global": "4.4.0",
"isomorphic-fetch": "2.2.1",
"obj-str": "1.0.3",
"postcss-modules": "1.5.0",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-intersection-observer": "8.26.1"
},
"devDependencies": {
"@babel/core": "7.8.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-optional-chaining": "7.8.3",
"@babel/preset-env": "7.8.6",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"@babel/register": "7.8.6",
"@simonlc/parcel-plugin-bundle-manifest": "0.1.3",
"@testing-library/react": "9.4.1",
"@types/express": "4.17.2",
"@types/isomorphic-fetch": "0.0.35",
"@types/node": "13.7.7",
"@types/obj-str": "1.0.0",
"@types/react": "16.9.23",
"@types/react-dom": "16.9.5",
"@types/youtube": "0.0.38",
"autoprefixer": "9.7.4",
"babel-eslint": "10.1.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.3",
"esm": "3.2.25",
"identity-obj-proxy": "3.0.0",
"ignore-styles": "5.0.1",
"jest": "25.1.0",
"nodemon": "2.0.2",
"parcel-bundler": "1.12.4",
"parcel-plugin-bundle-visualiser": "1.2.0",
"parcel-plugin-static-files-copy": "2.3.1",
"postcss-nested": "4.2.1",
"postcss-normalize": "8.0.1",
"postcss-reporter": "6.0.1",
"prettier": "1.19.1",
"prop-types": "15.7.2",
"react-hot-loader": "4.12.19",
"regenerator-runtime": "0.13.3",
"ts-node": "8.6.2",
"typescript": "3.8.3",
"whatwg-fetch": "3.0.0"
}
}