-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 2.08 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
56
57
58
{
"name": "folio",
"version": "0.25.0",
"description": "A minimalistic digital whiteboard for sketching and prototyping",
"private": true,
"type": "module",
"homepage": "https://www.josemi.xyz/folio",
"repository": "https://github.com/jmjuanes/folio",
"author": "Josemi Juanes <[email protected]>",
"bugs": "https://github.com/jmjuanes/folio/issues",
"scripts": {
"build": "yarn clean && yarn build:app && yarn build:site && yarn copy-assets",
"build:app": "cross-env NODE_ENV=production webpack build",
"build:site": "node ./scripts/site.js",
"copy-assets": "node scripts/copy-assets.js",
"clean": "rm -rf www",
"dev": "yarn clean && webpack serve",
"site": "yarn clean && yarn build:site && yarn copy-assets",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"@josemi-icons/react": "^0.6.1",
"@josemi-icons/svg": "^0.6.1",
"browser-fs-access": "^0.35.0",
"classnames": "^2.3.2",
"idb-keyval": "^6.2.1",
"lowcss": "^0.27.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use": "^17.5.1",
"uid": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/plugin-transform-react-jsx": "^7.25.7",
"@babel/plugin-transform-runtime": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@testing-library/react": "^16.0.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"front-matter": "^4.0.2",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"marked": "^15.0.6",
"mikel": "^0.17.1",
"picomatch": "^4.0.2",
"react-test-renderer": "^18.2.0",
"webpack": "^5.95.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.1.0"
},
"license": "MIT"
}