-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 905 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
{
"name": "CO_M21",
"version": "2.0.0",
"description": "Assembler and Simulator for a custom CPU instruction set",
"main": "backend/app.js",
"scripts": {
"start": "node index.js",
"install": "npm install --prefix frontend && npm install --prefix server",
"dev-server": "nodemon index.js",
"dev-full": "concurrently \"npm run dev-server\" \"npm start --prefix frontend\"",
"build": "npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/color-depth/CO_M21.git"
},
"keywords": [
"assembler"
],
"author": "Deep Sharma",
"license": "ISC",
"bugs": {
"url": "https://github.com/color-depth/CO_M21/issues"
},
"homepage": "https://github.com/color-depth/CO_M21#readme",
"devDependencies": {
"concurrently": "^6.4.0",
"nodemon": "^2.0.15"
},
"dependencies": {
"dotenv": "^10.0.0"
}
}