-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
35 lines (35 loc) · 1.15 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
{
"name": "@equal-vote/star-vote",
"version": "1.0.0",
"description": "star-server is built using Express (For now) for the back end server and React for the front end user interface",
"main": "index.js",
"workspaces": [
"./packages/shared",
"./packages/backend",
"./packages/frontend"
],
"scripts": {
"clean": "npx rimraf node_modules",
"clean:ws": "npm run clean -ws && npm run clean",
"test": "cd packages/backend && npm install && npm test",
"start": "./replace.sh && node ./packages/backend/build/src/Migrators/migrate-to-latest.js && node ./packages/backend/build/src/index.js",
"heroku-postbuild": "cd packages/frontend && npm install && npm run build && cd ../backend && npm install && npm run-script build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Equal-Vote/star-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Equal-Vote/star-server/issues"
},
"homepage": "https://github.com/Equal-Vote/star-server#readme",
"devDependencies": {
"rimraf": "^5.0.5"
},
"dependencies": {
"typescript": "^5.6.2"
}
}