forked from LiaScript/LiaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "lia-script",
"version": "0.5.0",
"description": "An extended Markdown parser for the creation of online courses.",
"main": "index.js",
"scripts": {
"watch": "npm run init && npx parcel serve src/assets/index.html",
"build": "npm run init && npx parcel build --no-source-maps --public-url ./ src/assets/index.html && npm run sw",
"init": "rm -rf dist && mkdir dist && cp node_modules/katex/dist/katex.min.css dist/",
"sw": "npx workbox injectManifest workbox-config.js",
"translate": "elm-i18n-gen locale src/elm/Translations.elm",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"elm",
"brunch",
"sass"
],
"author": "André Dietrich",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/generator": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/runtime": "^7.8.3",
"caniuse-lite": "^1.0.30001021",
"elm": "^0.19.1-3",
"elm-hot": "^1.1.4",
"node-elm-compiler": "^5.0.4",
"parcel": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.2.2",
"sass": "^1.24.5"
},
"dependencies": {
"ace-builds": "^1.4.8",
"dexie": "^2.0.4",
"katex": "^0.10.2",
"material-icons": "^0.3.1",
"sass-material-colors": "0.0.5"
},
"browserslist": [
"cover 99.5%"
],
"staticFiles": {
"staticPath": [
{
"staticPath": "node_modules/ace-builds/src-min-noconflict",
"staticOutDir": "editor"
}
]
}
}