This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.44 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
{
"name": "react-fft-flipbook",
"version": "0.1.4",
"description": "A flip book to explore the FFTs of audio visually built on React.",
"main": "dist/package/index.js",
"types": "dist/package/index.d.ts",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.config.js",
"build:demo": "npm run clean && webpack --config webpack.demo.config.js",
"build:package": "npm run clean && tsc && npm run build:sass",
"build:sass": "node-sass src/styles.scss dist/package/styles.css",
"deploy": "npm run build:demo && ./deploy.sh",
"clean": "rm -rf dist",
"release:patch": "npm run build:package && npm version patch && npm publish",
"release:minor": "npm run build:package && npm version minor && npm publish",
"release:major": "npm run build:package && npm version major && npm publish",
"lint": "tslint -p ./tsconfig.json",
"test": "npm run lint && jest -t",
"test:dev": "jest --watchAll -t",
"analyze:size": "NODE_ENV=fakerun webpack --config webpack.library.config.js"
},
"author": "",
"license": "ISC",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/src/.*\\.test.(ts|tsx|js)$"
},
"devDependencies": {
"@types/jest": "^21.1.4",
"@types/react": "^16.0.13",
"@types/react-dom": "^16.0.1",
"@types/react-dropzone": "^4.2.0",
"@types/webpack": "^3.0.13",
"@types/webpack-env": "^1.13.2",
"assets-webpack-plugin": "^3.5.1",
"awesome-typescript-loader": "^3.2.3",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.1",
"fft-js": "0.0.11",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
"node-sass": "^4.5.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^6.0.6",
"source-map-loader": "^0.2.2",
"style-loader": "^0.19.0",
"ts-jest": "^21.1.3",
"tslint": "^5.7.0",
"tslint-config-airbnb": "^5.3.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.5.3",
"web-audio-test-api": "^0.5.2",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.2"
},
"peerDependencies": {
"react": "^16.0.0"
},
"dependencies": {
"react-konva": "^1.6.4",
"konva": "^1.7.6",
"jsfft": "0.0.3",
"react-dropzone": "^4.2.3"
}
}