-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "staticsite-boilerplate",
"version": "1.0.0",
"build": 1,
"description": "",
"author": "Eric Dobyns <ericdobyns@gmail.com>",
"keywords": [],
"license": "UNLICENSED",
"main": "index.js",
"private": true,
"scripts": {
"start": "next",
"serve": "npm run package && serve ./out -p 3000",
"analyze": "cross-env ANALYZE=true next build",
"clean": "rm -rf .next ./out/",
"lint": "./node_modules/.bin/eslint . --ext .ts,.tsx",
"lint:fix": "./node_modules/.bin/eslint . --ext .ts,.tsx --fix",
"test": "jest",
"test:coverage": "jest --coverage --detectOpenHandles",
"build": "next build",
"package": "npm run clean && npm run build &&next export",
"deploy": "sh ./scripts/uploadToS3.sh"
},
"dependencies": {},
"devDependencies": {
"@next/bundle-analyzer": "^9.5.1",
"@types/jest": "^26.0.8",
"@types/node": "^14.0.27",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"babel-plugin-styled-components": "^1.11.1",
"cross-env": "^7.0.2",
"eslint": "^7.6.0",
"eslint-plugin-react": "^7.20.5",
"jest": "^26.2.2",
"next": "^9.5.1",
"next-offline": "^5.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.1.1",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
}
}