-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.55 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
{
"name": "things-ive-built",
"license": "GPL-3.0",
"version": "0.1.0",
"scripts": {
"dev": "yarn kill-port 3000 && nodemon",
"build": "NODE_ENV=production next build",
"start": "NODE_ENV=production next start",
"type-check": "tsc",
"type-check:watch": "tsc --watch",
"test": "yarn type-check && (yarn kill-port 3000 &) && yarn build && (yarn start &) && wait-on http://localhost:3000 && yarn cypress run && (yarn kill-port 3000 &)",
"test:i": "((yarn dev &) || true) && wait-on http://localhost:3000 && yarn cypress open",
"deploy": "yarn test && yarn build && now --public && now --prod"
},
"dependencies": {
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"classnames": "^2.2.6",
"express": "^4.16.3",
"firebase": "^6.3.1",
"firebase-admin": "^8.2.0",
"immer": "^3.1.3",
"is-url": "^1.2.4",
"lodash": "^4.17.13",
"material-ui-chip-input": "^1.0.0-beta.7",
"next": "^9.3.4",
"now-env": "^3.1.0",
"react": "^16.8.6",
"react-art": "^16.5.0",
"react-day-picker": "^7.2.4",
"react-dom": "^16.8.6",
"react-firebase-hooks": "^2.1.1",
"react-microlink": "^2.2.4",
"styled-components": "^3.4.5"
},
"devDependencies": {
"@testing-library/react": "^10.0.2",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/styled-jsx": "^2.2.5",
"concurrently": "^4.0.1",
"cypress": "^4.4.0",
"kill-port": "^1.3.2",
"prettier": "^2.0.4",
"ts-node": "^8.8.2",
"typescript": "^3.5.3",
"wait-on": "^3.0.1"
}
}