-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.84 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
{
"name": "olgacheraneva-task-2018",
"staticBasePath": "//olgacheraneva-task-2018.surge.sh/",
"defaultPath": "/",
"private": true,
"engines": {
"node": "10"
},
"scripts": {
"clean": "rimraf dist node_modules",
"build": "npm-run-all --parallel build:*",
"build:ts": "tsc",
"build:next": "next build",
"watch": "tsc --watch",
"ci:heroku:build": "docker build --rm=false -t registry.heroku.com/$npm_package_name/web .",
"ci:heroku:login": "docker login -u $HEROKU_LOGIN -p $HEROKU_TOKEN registry.heroku.com",
"ci:heroku:push": "docker push registry.heroku.com/$npm_package_name/web:latest",
"ci:heroku:release": "sh ./scripts/release.sh $npm_package_name",
"ci:surge:copyfiles": "copyfiles --up 1 \"./public/**/*\" ./dist/client/",
"ci:surge:upload": "surge -p ./dist/client -d $npm_package_name.surge.sh",
"deps:all": "npm ci",
"deps:production": "npm ci --production",
"docker:build": "docker build -t $npm_package_name .",
"docker:run": "docker run -p 8080:80 $npm_package_name",
"heroku:login": "heroku container:login",
"heroku:push": "heroku container:push web",
"heroku:release": "heroku container:release web",
"heroku:open": "heroku open",
"heroku": "npm-run-all heroku:*",
"heroku-init": "heroku login && heroku create $npm_package_name",
"lint": "npm-run-all lint:*",
"lint:css": "stylelint --fix server/**/*.css",
"lint:ts": "tslint --project .",
"start": "cross-env NODE_PATH=dist/server node dist/server"
},
"dependencies": {
"body-parser": "1.18.3",
"config": "3.0.1",
"express": "4.16.4",
"heroku": "7.22.9",
"isomorphic-fetch": "2.2.1",
"morgan": "1.9.1",
"next": "8.0.4",
"pg": "7.9.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"reflect-metadata": "0.1.13",
"sequelize": "5.7.4",
"sequelize-typescript": "1.0.0-alpha.9"
},
"devDependencies": {
"@types/bluebird": "3.5.26",
"@types/node": "11.11.6",
"@types/sequelize": "4.28.1",
"@types/validator": "10.11.0",
"@types/config": "0.0.34",
"@types/express": "4.16.1",
"@types/isomorphic-fetch": "0.0.35",
"@types/morgan": "1.7.35",
"@types/next": "8.0.3",
"@types/react": "16.8.13",
"@types/react-dom": "16.8.4",
"@typescript-eslint/eslint-plugin": "1.5.0",
"@typescript-eslint/parser": "1.5.0",
"@zeit/next-css": "1.0.1",
"@zeit/next-typescript": "1.1.1",
"copyfiles": "2.1.0",
"cross-env": "5.2.0",
"eslint": "5.15.3",
"eslint-config-xo": "0.26.0",
"eslint-config-xo-react": "0.19.0",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-hooks": "1.6.0",
"npm-run-all": "4.1.5",
"rimraf": "2.6.3",
"stylelint": "9.10.1",
"stylelint-config-standard": "18.2.0",
"surge": "0.20.5",
"tslint": "5.14.0",
"types": "0.1.1",
"typescript": "3.3.4000"
}
}