-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.33 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
52
53
54
55
{
"private": true,
"name": "fencedchat",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "preact build",
"serve": "sirv build --cors --single",
"dev": "preact watch",
"lint": "eslint src",
"test": "jest"
},
"eslintConfig": {
"extends": "preact",
"ignorePatterns": [
"build/"
]
},
"devDependencies": {
"dotenv-webpack": "^2.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^2.2.3",
"eslint": "^7.7.0",
"eslint-config-preact": "^1.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"jest-preset-preact": "^4.0.2",
"node-sass": "^4.14.1",
"preact-cli": "^3.0.1",
"preact-render-spy": "^1.3.0",
"sass-loader": "^10.0.1",
"sirv-cli": "^1.0.6"
},
"dependencies": {
"@sweetalert2/theme-bulma": "^3.2.0",
"bulma": "^0.9.0",
"nanoid": "^3.1.16",
"preact": "^10.4.8",
"preact-render-to-string": "^5.1.10",
"preact-router": "^3.2.1",
"pullstate": "^1.16.2",
"react-lottie": "^1.2.3",
"redaxios": "^0.3.0",
"socket.io-client": "^3.0.3",
"sweetalert2": "^9.17.1",
"unique-names-generator": "^4.3.1"
},
"jest": {
"preset": "jest-preset-preact",
"setupFiles": [
"<rootDir>/tests/__mocks__/browserMocks.js",
"<rootDir>/tests/__mocks__/setupTests.js"
]
}
}