-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 832 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 832 Bytes
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
{
"name": "pass-man-js",
"description": "WebApp Password manager",
"authors": "Isaac Steadman",
"version": "1.0.0",
"dependencies": {
"@parcel/transformer-less": "2.8.0",
"@types/express": "^4.17.0",
"@types/node": "^16.0.0",
"express": "^4.17.1",
"less": "^4.1.3",
"parcel": "^2.0.0",
"typescript": "^4.7.4"
},
"prettier": {
"singleQuote": true
},
"scripts": {
"build-client": "npx parcel build src/index.html",
"build-server": "npx tsc ./server/app.ts --target ES2020 --outDir ./dist-server --module commonjs",
"start-client": "npx parcel serve src/index.html",
"start-server": "npm run build-server && node ./dist-server/app.js",
"start-testable": "NODE_ENV=development MODE=E2E_TESTING_MOCKED npm run start-server",
"start": "npm run start-server"
}
}