-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.94 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.94 KB
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
{
"name": "fullstack-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon",
"build": "npm run build-next && npm run build-storybook && npm run build-server",
"start": "NODE_ENV=production node build/index.js",
"lint": "eslint .",
"stylelint": "stylelint '**/*.css'",
"prettify": "prettier --check .",
"prepare": "husky install",
"typecheck": "tsc",
"test": "npm run jest && npm run lint && npm run stylelint && npm run prettify && npm run typecheck",
"jest": "jest",
"jest-watch": "jest --watch",
"storybook": "start-storybook -s ./public -p 6006",
"build-next": "next build",
"build-storybook": "build-storybook -s public",
"build-server": "tsc --project tsconfig.server.json"
},
"dependencies": {
"next": "10.0.8",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/react": "^6.1.21",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.33",
"@types/react": "^17.0.3",
"@types/testing-library__jest-dom": "^5.9.5",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"babel": "^6.23.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.22.0",
"husky": "^5.1.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"storybook-css-modules-preset": "^1.0.6",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^21.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}