-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·60 lines (60 loc) · 1.94 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
57
58
59
60
{
"name": "mob-time-elm",
"version": "1.0.22",
"description": "",
"source": "src/index.html",
"scripts": {
"build": "parcel build",
"start": "node server/app.js",
"start:dev": "concurrently --kill-others \"yarn dev:build-front\" \"yarn dev:server\"",
"dev:build-front": "parcel watch",
"start:dev:front": "parcel",
"dev:server": "nodemon server/app.js",
"test": "elm-test-rs",
"postinstall": "elm-tooling install ; husky install",
"review": "elm-review",
"build:doc": "parcel build doc/index.html --dist-dir=doc/dist",
"start:doc": "parcel doc/index.html --dist-dir=doc/dist --port=4321",
"stylelint": "stylelint **/*.scss"
},
"keywords": [],
"author": "",
"license": "ISC",
"staticFiles": {
"staticPath": "public"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.8.3",
"@parcel/transformer-elm": "^2.8.3",
"@parcel/transformer-sass": "^2.8.3",
"@parcel/transformer-webmanifest": "^2.8.3",
"buffer": "^5.7.1",
"concurrently": "^7.0.0",
"elm": "^0.19.1-5",
"elm-review": "^2.9.1",
"elm-test": "^0.19.1-revision12",
"elm-tooling": "^1.8.0",
"husky": "^8.0.2",
"nodemon": "^2.0.7",
"parcel": "^2.8.3",
"parcel-reporter-static-files-copy": "^1.5.0",
"postcss": "^8.4.21",
"prettier": "^2.8.2",
"process": "^0.11.10",
"sass": "^1.43.4",
"socket.io-client": "^4.3.2",
"stylelint": "^14.16.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard": "^29.0.0",
"stylelint-scss": "^4.3.0",
"tippy.js": "^6.3.7"
},
"dependencies": {
"express": "^4.17.1",
"howler": "^2.2.3",
"socket.io": "^4.6.1",
"y-indexeddb": "^9.0.9",
"y-webrtc": "^10.2.4",
"yjs": "^13.5.48"
}
}