-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "seqviz-demo",
"homepage": ".",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build && next export",
"deploy": "npm update seqviz && npm run build && aws s3 sync ./out s3://lattice-tools-s3/seqviz --delete && aws cloudfront create-invalidation --distribution-id E3NMX6D92LFTAV --paths '/seqviz/*'",
"fix": "prettier ./lib/** ./pages/** --write && eslint lib --ext ts,tsx --fix",
"lint": "prettier ./lib/** --check && eslint lib --ext ts,tsx --quiet",
"start": "open http://localhost:3010/ && next dev -p 3010",
"dev": "next dev -p 3010"
},
"dependencies": {
"browserslist": "^4.21.3",
"history": "^4.10.1",
"lodash": "^4.17.21",
"next": "^13.5.6",
"next-with-less": "^2.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.1.3",
"typescript": "^4.8.2"
},
"browserslist": {
"production": [
">1%"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/lodash": "^4.14.184",
"@types/react": "^18.0.18",
"webpack": "^5.76.0"
}
}