forked from lmachens/react-context
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.66 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.66 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
{
"name": "boilerplate",
"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",
"eslint": "eslint .",
"prettify": "prettier --write .",
"prettycheck": "prettier --check .",
"stylelint": "stylelint \"**/*.css\"",
"prepare": "husky install",
"typecheck": "tsc",
"test": "npm run eslint && npm run stylelint && npm run prettycheck && npm run typecheck",
"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",
"swr": "^0.5.4"
},
"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",
"@types/node": "^14.14.33",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"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",
"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"
}
}