-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
93 lines (93 loc) · 2.88 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
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
{
"name": "jigsaws-dev",
"version": "0.1.0",
"private": true,
"scripts": {
"ide": "cross-env NODE_ENV=development webpack serve --config=ide/webpack.config.js --mode=development",
"dev": "next dev -p 4000",
"build": "next build",
"start": "next start",
"prettier": "prettier -w .",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"vercel-build": "yum install libuuid-devel libmount-devel zlib-devel && cp /lib64/{libuuid,libmount,libblkid}.so.1 node_modules/canvas/build/Release/ && mkdir -p src/.temp/sketches && npm run sync:sketches && npm run build",
"sync:sketches": "cp -r sketches src/.temp/",
"prepare": "husky install"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"@types/chroma-js": "^2.1.3",
"@types/file-saver": "^2.0.1",
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.16",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/resize-observer-browser": "^0.1.5",
"@types/shuffle-seed": "^1.1.0",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-eslint": "10.1.0",
"canvas": "^2.11.0",
"canvas2svg": "^1.0.16",
"chroma-js": "^2.1.0",
"dayjs": "^1.10.5",
"delaunator": "^4.0.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-saver": "^2.0.2",
"gray-matter": "^4.0.2",
"js-yaml": "^4.0.0",
"next": "10.0.4",
"next-plausible": "^1.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-markdown": "^5.0.3",
"react-player": "^2.8.2",
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.1",
"shuffle-seed": "^1.1.6",
"simplex-noise": "^2.4.0",
"strip-markdown": "^4.0.0",
"styled-components": "^5.2.1",
"typescript": "^4.3.5",
"unified": "^9.2.0",
"voronoi": "^1.0.0",
"webm-writer": "^0.3.1",
"webpack": "^4.44.1"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@types/jest": "^26.0.24",
"@types/jsdom": "^16.2.13",
"@types/xmldom": "^0.1.31",
"abab": "^2.0.5",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"cloudinary": "^1.26.3",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.1",
"husky": "^7.0.0",
"jest": "^27.0.6",
"jsdom": "^16.7.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.1",
"pug-html-loader": "^1.1.5",
"ts-jest": "^27.0.3",
"ts-loader": "^8.0.17",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"xmldom": "^0.6.0"
}
}