-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.77 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
{
"name": "templateeditor",
"version": "1.0.0",
"main": "src/editor.js",
"license": "MIT",
"scripts": {
"watch": "parcel src/index.html",
"build": "parcel build src/index.html --public-url replacethislinewithadot && sed -i '' 's/replacethislinewithadot/./g' dist/index.html",
"build-netlify": "parcel build src/index.html --public-url replacethislinewithadot && sed -i 's/replacethislinewithadot/./g' dist/index.html",
"clean:away": "npm run rimraf -- static/avms/scripts/away",
"prebuild:prod": "npm run clean:away",
"build:away": "webpack --config webpack.config.js --progress --env.prod"
},
"staticFiles": {
"staticPath": "static",
"watcherGlob": "**"
},
"dependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@material/ripple": "^3.1.0",
"@material/switch": "^3.1.0",
"copy-webpack-plugin": "^6.0.2",
"events": "^3.0.0",
"fabric": "^3.4.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.4.3",
"pouchdb": "^7.1.1",
"terser-webpack-plugin": "^3.0.6",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"@awayfl/avm1": "^0.2.0",
"@awayfl/avm2": "^0.2.0",
"@awayfl/awayfl-player": "^0.2.0",
"@awayfl/playerglobal": "^0.2.0",
"@awayfl/swf-loader": "^0.4.0",
"@awayjs/core": "^0.9.0",
"@awayjs/graphics": "^0.5.0",
"@awayjs/materials": "^0.6.0",
"@awayjs/renderer": "^0.11.0",
"@awayjs/scene": "^0.13.0",
"@awayjs/stage": "^0.11.0",
"@awayjs/view": "^0.6.0",
"poki-player": "awaystudios/poki-player"
}
}