forked from Musish/Musish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "Musish",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "yarn tslint:check"
}
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/polyfill": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@sentry/browser": "^4.6.6",
"@symfony/webpack-encore": "^0.27.0",
"@types/classnames": "^2.2.7",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/js-md5": "^0.4.2",
"@types/lodash": "^4.14.136",
"@types/mousetrap": "^1.6.3",
"@types/prop-types": "^15.7.1",
"@types/qs": "^6.5.3",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"@types/react-router-dom": "^4.3.4",
"@types/react-s-alert": "^1.3.2",
"@types/react-virtualized": "^9.21.1",
"@types/webpack-env": "^1.14.0",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"concurrently": "^4.1.0",
"dotenv-webpack": "^1.5.7",
"favicons-webpack-plugin": "^0.0.9",
"hoist-non-react-statics": "^3.2.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.0",
"include-media": "^1.4.9",
"js-md5": "^0.7.3",
"lodash": "^4.17.11",
"mousetrap": "^1.6.2",
"node-sass": "^4.10.0",
"normalize.css": "^8.0.1",
"prop-types": "^15.6.2",
"qs": "^6.7.0",
"react": "^16.8.6",
"react-content-loader": "^3.4.1",
"react-contextmenu": "^2.10.0",
"react-dnd": "^7.4.5",
"react-dnd-html5-backend": "^7.0.2",
"react-dom": "^16.8.6",
"react-draggable": "^3.0.5",
"react-lines-ellipsis": "^0.14.1",
"react-localization": "^1.0.13",
"react-router-dom": "^4.3.1",
"react-s-alert": "^1.4.1",
"react-sortable-hoc": "^1.6.1",
"react-virtualized": "^9.21.0",
"sass-loader": "^7.1.0",
"ts-loader": "^6.0.1",
"tslint": "^5.16.0",
"tslint-plugin-prettier": "^2.0.1",
"typed-scss-modules": "^0.0.10",
"typescript": "^3.4.5",
"vanilla-tilt": "^1.5.0",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"server": "encore dev-server --hot",
"tsmp": "tsm \"src/app/**/*.scss\" --aliasPrefixes.~ node_modules/",
"start": "concurrently --kill-others \"yarn server\" \"yarn tsmp -w\"",
"build": "yarn tsmp && yarn encore production",
"tslint": "tslint -c tslint.json --project .",
"tslint:fix": "yarn tslint --fix",
"tslint:check": "yarn tslint -c",
"tslint:check-config": "tslint-config-prettier-check ./tslint.json"
},
"devDependencies": {
"musickit-typescript": "^1.2.4",
"prettier": "^1.17.1",
"prettier-tslint": "^0.4.2",
"tslint-config-prettier": "^1.18.0",
"tslint-junit-formatter": "^5.1.0"
}
}