bloom-player 2.2.44 → 2.2.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +1 -104
package/package.json CHANGED
@@ -10,101 +10,6 @@
10
10
  "type": "git",
11
11
  "url": "https://github.com/BloomBooks/bloom-player.git"
12
12
  },
13
- "scripts": {
14
- "// COMMENTS: make the action a space rather than empty string so `yarn run` can list the scripts": " ",
15
- "//": " ",
16
- "// start will build, watch, start a server, and open a chrome browser with CORS disabled": " ",
17
- "// you can edit index-for-developing.html to point to different books": " ",
18
- "start": "concurrently npm:start-webpack-serve npm:chrome",
19
- "start-webpack-serve": "yarn webpack-dev-server",
20
- "storybook": "concurrently npm:storybook-inner npm:chrome-on-storybook-port",
21
- "storybook-inner": "start-storybook --static-dir ./,./src/activities,./src/activities/legacyQuizHandling -p 9009 --ci",
22
- "// if you are testing with a book hosted online, you will have to load chrome with these args (because of CORS restrictions)": " ",
23
- "chrome": "chrome http://localhost:8080/ --disable-web-security --disable-gpu --user-data-dir=%temp%/chromeTemp",
24
- "chrome-on-storybook-port": "chrome http://localhost:9009/ --disable-web-security --disable-gpu --user-data-dir=%temp%/chromeTemp",
25
- "// note: shx cp is the same as unix cp, but cross platform. So a bit different semantics than Windows copy": " ",
26
- "build": "shx rm -rf dist/ && webpack --config webpack-config-prod.js",
27
- "build-dev": "shx rm -rf dist/ && webpack --config webpack.config.js",
28
- "tslint": "tslint --project tsconfig.json",
29
- "test": "jest",
30
- "test-storybook": "test-storybook --url http://localhost:9009",
31
- "//publish-clean": "strips out the scripts, dependencies, etc and then does `npm publish`",
32
- "publish-clean": "clean-publish"
33
- },
34
- "dependencies": {
35
- "@material-ui/core": "^4.12.3",
36
- "@material-ui/icons": "^4.11.2",
37
- "axios": "^0.18.0",
38
- "dynamic-import-polyfill": "^0.1.1",
39
- "jquery.nicescroll": "^3.7.6",
40
- "react": "^16.8.5",
41
- "react-dom": "^16.8.5",
42
- "react-id-swiper": "2.3.2",
43
- "style-scoped": "^0.2.1",
44
- "swiper": "^4.5.0"
45
- },
46
- "devDependencies": {
47
- "@babel/core": "^7.5.5",
48
- "@babel/preset-env": "^7.5.5",
49
- "@babel/preset-react": "^7.7.4",
50
- "@babel/preset-typescript": "^7.3.3",
51
- "@crowdin/crowdin-api-client": "^1.10.4",
52
- "@storybook/addon-a11y": "^6.5.13",
53
- "@storybook/addon-actions": "^6.5.13",
54
- "@storybook/addon-essentials": "^6.5.13",
55
- "@storybook/addon-interactions": "^6.5.13",
56
- "@storybook/addon-knobs": "^6.4.0",
57
- "@storybook/addon-links": "^6.5.13",
58
- "@storybook/addon-viewport": "^6.5.13",
59
- "@storybook/addons": "^6.5.13",
60
- "@storybook/jest": "^0.0.10",
61
- "@storybook/react": "^6.5.13",
62
- "@storybook/test-runner": "^0.9.1",
63
- "@storybook/testing-library": "^0.0.13",
64
- "@types/jest": "^27.4.0",
65
- "@types/jquery": "^3.5.5",
66
- "@types/jquery.nicescroll": "^3.7.1",
67
- "@types/node": "^16.3.1",
68
- "@types/react": "^16.9.1",
69
- "@types/react-dom": "^16.8.5",
70
- "@types/storybook__react": "^4.0.2",
71
- "babel-jest": "^27.4.6",
72
- "babel-loader": "^8.0.6",
73
- "before-build-webpack": "^0.2.11",
74
- "clean-publish": "^4.0.1",
75
- "concurrently": "^4.1.1",
76
- "copy-webpack-plugin": "^5.0.4",
77
- "css-loader": "^2.1.1",
78
- "editorconfig": "^0.15.3",
79
- "eslint": "^8.4.1",
80
- "file-loader": "^3.0.1",
81
- "globule": "^1.2.1",
82
- "html-webpack-plugin": "^3.2.0",
83
- "jest": "^27.4.7",
84
- "jest-teamcity-reporter": "^0.9.0",
85
- "jest-transform-css": "^3.0.0",
86
- "less": "^3.9.0",
87
- "less-loader": "^4.1.0",
88
- "prettier": "^1.16.4",
89
- "raw-loader": "^3.1.0",
90
- "semantic-release": "19.0.5",
91
- "shx": "^0.3.2",
92
- "style-loader": "^0.23.1",
93
- "terser-webpack-plugin": "^1.3.0",
94
- "ts-jest": "^27.1.3",
95
- "ts-loader": "^5.3.3",
96
- "tslint": "^5.15.0",
97
- "tslint-config-prettier": "^1.18.0",
98
- "tslint-react": "^4.0.0",
99
- "typescript": "*",
100
- "url-loader": "^1.1.2",
101
- "webpack": "^4.39.2",
102
- "webpack-bundle-analyzer": "^3.3.2",
103
- "webpack-cli": "^4.7.0",
104
- "webpack-dev-server": "^4.11.1",
105
- "webpack-merge": "^4.2.1",
106
- "yarn": "^1.15.2"
107
- },
108
13
  "files": [
109
14
  "dist/*.js",
110
15
  "dist/bloomplayer.htm",
@@ -113,17 +18,9 @@
113
18
  "dist/*.css",
114
19
  "dist/*.tsv"
115
20
  ],
116
- "clean-publish": {
117
- "packageManager": "yarn",
118
- "fields": [
119
- "dependencies",
120
- "scripts",
121
- "engines"
122
- ]
123
- },
124
21
  "volta": {
125
22
  "node": "16.14.0",
126
23
  "yarn": "1.22.19"
127
24
  },
128
- "version": "2.2.44"
25
+ "version": "2.2.45"
129
26
  }