-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.19 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.19 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "access-8-math-web",
"version": "2.0.5",
"private": true,
"homepage": "https://access8math.wendellatman.com",
"main": "main.js",
"dependencies": {
"@codemirror/lang-markdown": "^6.0.5",
"@coseeing/see-mark": "^1.4.1",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"classnames": "^2.3.2",
"codemirror": "^6.0.1",
"core-js": "^3.21.1",
"electron-serve": "^1.3.0",
"electron-squirrel-startup": "^1.0.1",
"file-saver": "^2.0.5",
"i": "^0.3.7",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.2",
"jszip": "^3.10.1",
"prop-types": "^15.8.1",
"ramda": "^0.30.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.2.2",
"react-router-dom": "^6.30.3",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "craco start",
"start:desktop": "electron-forge start",
"build": "GENERATE_SOURCEMAP=false craco build",
"build:staticFiles": "craco build",
"build:executableBundle": "electron-forge package",
"build:distributables": "electron-forge make",
"build:windows": "npm run build:staticFiles && npm run build:executableBundle && npm run build:distributables",
"build:macOS": "npm run build && npm run build:executableBundle && npm run build:distributables",
"test": "craco test",
"eject": "craco eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint": "npx eslint .",
"format": "npx prettier --write .",
"format:check": "npx prettier --check .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@craco/craco": "^7.1.0",
"@electron-forge/cli": "^7.4.0",
"@electron-forge/maker-deb": "^7.4.0",
"@electron-forge/maker-rpm": "^7.4.0",
"@electron-forge/maker-squirrel": "^7.4.0",
"@electron-forge/maker-zip": "^7.4.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.4.0",
"@electron-forge/plugin-fuses": "^7.4.0",
"@electron/fuses": "^1.8.0",
"@storybook/addon-docs": "^9.1.2",
"@storybook/addon-onboarding": "^9.1.2",
"@storybook/addon-themes": "^9.1.2",
"@storybook/preset-create-react-app": "^9.1.2",
"@storybook/react-webpack5": "^9.1.2",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^13.5.0",
"electron": "^31.2.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^9.1.2",
"gh-pages": "^6.0.0",
"prettier": "3.0.3",
"storybook": "^9.1.17",
"tailwindcss": "^3.3.3",
"webpack": "^5.101.2"
}
}