-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "scriptchat",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"test": "jest",
"format": "prettier-standard --write \"src/**/*.{js,jsx}\"",
"lint": "prettier-standard --check \"src/**/*.{js,jsx}\""
},
"dependencies": {
"@reduxjs/toolkit": "1.5.0",
"localforage": "1.9.0",
"lodash-es": "4.17.20",
"md5": "2.3.0",
"prop-types": "15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-redux": "7.2.2",
"seedrandom": "3.0.5",
"semantic-ui-css": "2.4.1",
"semantic-ui-react": "2.0.2"
},
"devDependencies": {
"@babel/preset-env": "7.12.11",
"@snowpack/app-scripts-react": "1.12.6",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.3",
"@testing-library/user-event": "12.6.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"jest": "26.6.3",
"lodash": "4.17.21",
"prettier-standard": "16.4.1",
"snowpack": "2.18.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}