-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "cadl",
"version": "1.0.0",
"description": "A CAD Library using THREE.JS visualization",
"main": "index.js",
"scripts": {
"test": "test",
"client": "cd client && npm run start",
"client_prod": "cd client && npm run prod",
"server": "cd server && nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"prod": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client_prod\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tylermaran/cadl.git"
},
"keywords": [
"cadl",
"threejs",
"stl",
"dxf",
"gcode",
"cad"
],
"author": "themanmaran",
"license": "MIT",
"bugs": {
"url": "https://github.com/tylermaran/cadl/issues"
},
"homepage": "https://github.com/tylermaran/cadl#readme",
"dependencies": {
"concurrently": "^4.1.2"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
}
}