-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.41 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.41 KB
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
{
"name": "basicchatapp",
"description": "It is just a simple chat application. Implemented in Sapper/SvelteJS.",
"version": "0.0.1",
"scripts": {
"dev": "sapper dev",
"build": "npm run build:sass && sapper build --legacy",
"export": "npm run build:sass && sapper export --legacy",
"start": "node __sapper__/build",
"build:sass": "node-sass --output-style compressed src/main.sass > static/css/compiled.css",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.1",
"mongoose-unique-validator": "^2.0.3",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@rollup/plugin-replace": "^2.2.0",
"bulma": "^0.8.0",
"node-sass": "^4.13.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.12.0",
"rollup-plugin-babel": "^4.0.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.0.1",
"rollup-plugin-terser": "^5.1.3",
"sapper": "^0.27.0",
"svelte": "^3.0.0"
}
}