-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·74 lines (74 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
{
"name": "openchart",
"version": "1.0.0",
"author": "Jesse <[email protected]>",
"private": true,
"browsersList": [
"defaults",
"not IE 11"
],
"scripts": {
"build": "yarn clean-dist && yarn copy-noteskins && parcel build --no-source-maps client/index.html",
"build:docker": "yarn build && docker build -t openchart -f Dockerfile dist/",
"clean-dist": "rm -rf dist/ && mkdir dist/",
"copy-noteskins": "mkdir -p dist/ && cp -R client/img/noteskins/ dist/ && find dist/noteskins/ -name __original__ | xargs rm -rf",
"format": "prettier -w client/",
"format-check": "prettier -c client/",
"lint": "tslint --project tsconfig.json",
"watch": "yarn clean-dist && yarn copy-noteskins && parcel watch client/index.html",
"test": "mocha",
"test-watch": "mocha -w --watch-files 'client/src/**/*' --reporter min"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@parcel/transformer-image": "2.0.0-beta.2",
"@parcel/transformer-sass": "2.0.0-beta.2",
"@parcel/transformer-typescript-tsc": "^2.0.0-beta.2",
"@parcel/ts-utils": "^2.0.0-beta.2",
"@types/assert": "^1.5.4",
"@types/d3": "^6.3.0",
"@types/events": "^3.0.0",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.37",
"@types/pako": "^1.0.1",
"@types/parcel-env": "^0.0.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/sinon": "^10.0.0",
"assert": "^2.0.0",
"autoprefixer": "^10.2.5",
"jsdom": "^16.5.2",
"jsdom-global": "^3.0.2",
"mocha": "^8.3.0",
"mock-local-storage": "^1.1.17",
"parcel": "^2.0.0-beta.2",
"postcss": "^8.0.0",
"prettier": "^2.2.1",
"sass": "^1.26.10",
"sinon": "^10.0.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
},
"dependencies": {
"base64-arraybuffer": "^0.2.0",
"base64-js": "^1.5.1",
"d3": "^6.6.2",
"events": "^3.3.0",
"fraction.js": "^4.0.13",
"lodash": "^4.17.21",
"mobx": "^6.1.8",
"mobx-react-lite": "^3.2.0",
"mobx-utils": "^6.0.3",
"normalize.css": "^8.0.1",
"pako": "^2.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-from-dom": "^0.6.0",
"waveform-data": "^3.3.4"
}
}