-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 869 Bytes
/
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
{
"name": "chameleon",
"version": "0.0.1",
"description": "FFMPEG WASM media converter",
"keywords": ["converter"],
"author": "Sean Quijote",
"license": "ISC",
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"test": "web-test-runner \"src/**/*.test.jsx\"",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "prettier --check \"src/**/*.{js,jsx}\""
},
"dependencies": {
"@ffmpeg/core": "^0.8.4",
"@ffmpeg/ffmpeg": "^0.9.5",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@snowpack/plugin-dotenv": "^2.0.4",
"@snowpack/plugin-react-refresh": "^2.3.7",
"@snowpack/web-test-runner-plugin": "^0.1.4",
"@testing-library/react": "^11.0.0",
"@web/test-runner": "^0.9.7",
"chai": "^4.2.0",
"prettier": "^2.0.5",
"snowpack": "^2.17.1"
}
}