-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
50
51
{
"name": "ethers-sandbox",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node --project tsconfig.server.json server/index.ts",
"build": "next build",
"start": "cross-env NODE_ENV=production node server",
"lint": "next lint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "env-cmd -f .env.local synpress run --noExit --configFile synpress.json",
"prepare": "husky install"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@synthetixio/synpress": "^1.1.1",
"cross-env": "^7.0.2",
"ethers": "^5.5.4",
"express": "^4.17.1",
"gun": "^0.2020.1235",
"next": "12.0.10",
"react": "17.0.2",
"react-dom": "17.0.2",
"swr": "^1.2.1",
"use-mutation": "^2.2.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.17.4",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@types/express": "^4.17.13",
"@types/node": "^17.0.18",
"@types/puppeteer-core": "^5.4.0",
"@types/react": "^17.0.39",
"babel-loader": "^8.2.3",
"cypress": "^9.5.0",
"env-cmd": "^10.1.0",
"eslint": "8.9.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-storybook": "^0.5.6",
"husky": "^7.0.4",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}