-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 769 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 769 Bytes
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
{
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"test": "jest",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@emotion/core": "^10.0.28",
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"devDependencies": {
"@emotion/babel-preset-css-prop": "^10.0.27",
"@snowpack/app-scripts-react": "^1.1.4",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.3",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"jest": "^25.4.0",
"prettier": "^2.0.0",
"snowpack": "^2.2.0",
"typescript": "^3.8.0"
}
}