-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "piano",
"version": "0.0.1",
"description": "asdf",
"repository": "https://github.com/edwardsCam/piano",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "yarn clean && webpack --config webpack.config.js",
"clean": "rm -rf dist",
"prettier": "prettier --write '**/*.ts' '**/*.tsx'",
"start": "yarn build && webpack serve",
"test": "yarn prettier && jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "^11.1.1",
"@emotion/styled": "^11.0.0",
"@tonaljs/chord": "^4.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@emotion/babel-preset-css-prop": "^11.0.0",
"@types/jest": "^26.0.15",
"@types/react": "^17.0.0",
"babel-loader": "^8.2.2",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.2",
"webpack": "^5.8.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}