-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.65 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
94
95
{
"name": "chrome-cocopy",
"version": "0.4.0",
"private": true,
"repository": "ssh://[email protected]/pokutuna/chrome-cocopy.git",
"license": "MIT",
"author": "pokutuna <[email protected]>",
"scripts": {
"build": "webpack",
"check": "gts check",
"clean": "gts clean",
"fix": "gts fix",
"prepare": "husky install",
"test": "jest",
"posttest": "yarn run check",
"test-watch": "jest --watch",
"update-gallery": "ts-node ./gallery/generate.ts",
"validator": "ajv compile -s ./src/lib/function.schema.json -o ./src/lib/function.ajv.js",
"watch": "webpack --watch",
"zip": "yarn build && zip -r build-$(cat build/manifest.json | jq -r '.version').zip ./build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"gts fix"
]
},
"resolutions": {
"@types/react": "18.0.14"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.1.1",
"@fortawesome/free-solid-svg-icons": "6.1.1",
"@fortawesome/react-fontawesome": "0.2.0",
"ajv": "8.11.0",
"chroma-js": "2.4.2",
"jsx-runtime": "1.2.0",
"lodash.debounce": "4.0.8",
"mustache": "4.2.0",
"prismjs": "1.28.0",
"react": "18.2.0",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-dom": "18.2.0",
"react-router-dom": "6.3.0",
"react-simple-code-editor": "0.11.2",
"styled-components": "5.3.5"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.3.0",
"@types/chroma-js": "2.1.3",
"@types/chrome": "0.0.191",
"@types/jest": "27.5.2",
"@types/js-yaml": "4.0.5",
"@types/lodash.debounce": "4.0.7",
"@types/mustache": "4.1.3",
"@types/node": "16.11.43",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/react-router-dom": "5.3.3",
"@types/styled-components": "5.1.25",
"ajv-cli": "5.0.0",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.1",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-react": "7.30.1",
"gts": "3.1.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "28.1.2",
"jest-chrome": "0.7.2",
"jest-environment-jsdom": "28.1.2",
"jest-styled-components": "7.0.8",
"js-yaml": "4.1.0",
"license-webpack-plugin": "4.0.2",
"lint-staged": "12.5.0",
"style-loader": "3.3.1",
"ts-jest": "28.0.5",
"ts-loader": "9.3.1",
"ts-node": "10.8.2",
"typescript": "4.7.4",
"webpack": "5.94.0",
"webpack-cli": "4.10.0"
},
"engines": {
"node": ">=16"
}
}