-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 920 Bytes
/
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
{
"name": "agario",
"version": "1.0.0",
"description": "Agario clone",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "parcel watch src/index.html",
"install": "parcel build src/index.html",
"start": "node server.js"
},
"engines": {
"node": "12.x"
},
"author": "Deniz Basgoren",
"license": "GPL3",
"dependencies": {
"immer": "^5.1.0",
"preact": "^10.1.1",
"serve-static": "^1.14.1",
"ws": "^7.2.1"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-transform-react-jsx": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"parcel-bundler": "^1.12.4"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "h",
"pragmaFrag": "Fragment"
}
]
]
}
}