forked from async-labs/saas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
{
"name": "saas-app",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "nodemon server/app.ts",
"build": "next build && tsc --project tsconfig.server.json",
"postinstall": "next build && rm -rf production-server/ && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node production-server/server/app.js",
"now": "now && now alias",
"now-rm": "now rm saas-app --safe --yes",
"lint": "tslint -p tsconfig.json && tslint -p tsconfig.server.json",
"test": "jest --coverage",
"processes-3000": "ss -lptn 'sport = :3000'",
"processes-node": "ps -e|grep node",
"kill-processes-at-port": "lsof -i tcp:3000 | awk 'NR!=1 {print $2}' | xargs kill"
},
"jest": {
"coverageDirectory": "./.coverage"
},
"dependencies": {
"@material-ui/core": "^3.2.0",
"@types/node": "^10.11.7",
"@zeit/next-typescript": "^1.1.1",
"downshift": "^3.1.0",
"express": "^4.16.4",
"he": "^1.2.0",
"helmet": "^3.14.0",
"htmlescape": "^1.1.1",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.11",
"marked": "^0.5.1",
"mobx": "^5.5.0",
"mobx-react": "^5.2.8",
"moment": "^2.22.2",
"next": "^7.0.2",
"nprogress": "^0.2.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-jss": "^8.6.1",
"react-mentions": "^2.3.1",
"react-stripe-checkout": "^2.6.3",
"typescript": "^3.1.3"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/he": "^1.1.0",
"@types/helmet": "^0.0.42",
"@types/htmlescape": "^1.1.1",
"@types/lodash": "^4.14.117",
"@types/marked": "^0.4.2",
"@types/material-ui": "^0.21.5",
"@types/next": "^7.0.2",
"@types/nprogress": "^0.0.29",
"@types/react": "^16.4.16",
"@types/react-dom": "^16.0.9",
"@types/react-jss": "^8.6.0",
"@types/styled-jsx": "^2.2.7",
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0"
}
}