forked from async-labs/saas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
{
"name": "saas-app",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "nodemon server/app.ts",
"build": "next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node production-server/server/app.js",
"now": "now && now alias && 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": "^1.3.0",
"@types/node": "^10.5.1",
"@zeit/next-typescript": "^1.1.0",
"downshift": "^1.31.16",
"express": "^4.16.3",
"he": "^1.1.1",
"helmet": "^3.12.1",
"htmlescape": "^1.1.1",
"isomorphic-unfetch": "^2.0.0",
"lodash": "^4.17.10",
"marked": "^0.4.0",
"mobx": "^5.0.2",
"mobx-react": "^5.2.3",
"moment": "^2.22.2",
"next": "^6.1.1",
"nprogress": "^0.2.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-jss": "^8.6.0",
"react-mentions": "^2.0.1",
"react-stripe-checkout": "^2.6.3",
"typescript": "^2.9.2"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/he": "^1.1.0",
"@types/helmet": "^0.0.38",
"@types/lodash": "^4.14.109",
"@types/marked": "^0.4.0",
"@types/material-ui": "^0.21.3",
"@types/next": "^6.0.3",
"@types/nprogress": "^0.0.29",
"@types/react": "^16.4.5",
"@types/react-dom": "^16.0.6",
"babel-eslint": "^8.2.5",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.2.0",
"nodemon": "^1.17.5",
"ts-node": "^7.0.0",
"tslint": "^5.10.0"
}
}