-
Notifications
You must be signed in to change notification settings - Fork 239
/
package.json
30 lines (30 loc) · 1.04 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
{
"name": "learnr",
"private": true,
"engines": {
"node": ">= 14"
},
"scripts": {
"build": "npm run lint && npm run build:esbuild",
"build:esbuild": "node learnr-js/build.js",
"lint": "standard --fix learnr-js",
"copy": "npm run copy:clipboard && npm run copy:bootbox && npm run copy:i18next",
"copy:clipboard": "cpy 'clipboard.min.js' ../../../inst/lib/clipboardjs --cwd node_modules/clipboard/dist/",
"copy:bootbox": "cpy 'bootbox.min.js' ../../../inst/lib/bootbox --cwd node_modules/bootbox/dist/",
"copy:i18next": "cpy 'i18next.min.js' ../../inst/lib/i18next --cwd node_modules/i18next/"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"bootbox": "^5.5.2",
"browserslist": "^4.19.1",
"clipboard": "^2.0.10",
"core-js": "^3.21.0",
"cpy-cli": "^4.1.0",
"esbuild": "^0.14.18",
"esbuild-plugin-babel": "https://github.com/schloerke/esbuild-plugin-babel#patch-2",
"i18next": "^21.6.10",
"standard": "^16.0.4"
}
}