-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.76 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
{
"name": "jig",
"description": "my frontend-product template",
"version": "0.0.1",
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.12.1",
"@babel/plugin-proposal-optional-chaining": "7.12.7",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@favi_ty/babel-plugin-esm-pikacdn": "1.0.2",
"@favi_ty/babel-plugin-esm-url-resolver": "1.2.3",
"@snowpack/babel-plugin-package-import": "^1.1.6",
"@types/babel__core": "7.1.12",
"@types/babel__preset-env": "7.9.1",
"@types/prettier": "2.1.5",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/webpack": "4.41.25",
"babel-loader": "^8.2.2",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"fd-find": "1.0.7",
"prettier": "^2.2.1",
"serve": "11.3.2",
"snowpack": "^3.0.0-rc.1",
"sync-glob": "1.4.0",
"terser": "5.5.1",
"typescript": "4.1.3",
"typesync": "0.8.0",
"webpack": "5.10.3",
"webpack-cli": "4.2.0"
},
"keywords": [],
"license": "WTFPL",
"main": "index.js",
"private": true,
"scripts": {
"prepare": "snowpack install",
"build": "babel src --out-dir statics --extensions .ts,.tsx",
"minify": "fd . './statics' -e js -x npx terser {} -o {}",
"assets": "sync-glob -d=false 'src/assets/**/*' statics",
"watch": "babel src -w --out-dir statics --extensions .ts,tsx",
"serve": "serve statics",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"core-js": "3.8.1",
"events-polyfill": "2.1.2",
"goober": "2.0.19-next.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"whatwg-fetch": "3.5.0"
}
}