-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
34 lines (34 loc) · 1.21 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
{
"name": "esqlate",
"version": "1.1.3",
"description": "The front page of the Esqlate project ",
"main": "runner.js",
"scripts": {
"front-prepare": "cd ./node_modules/esqlate-front && bash -c ' [ ! -d node_modules ] && npm install || true ' && npm run-script build-templates",
"server-prepare": "cd ./node_modules/esqlate-server && bash -c ' [ ! -d node_modules ] && npm install || true '",
"front": "npm run-script front-prepare && cd ./node_modules/esqlate-front && npm start",
"server": "npm run-script server-prepare && cd ./node_modules/esqlate-server && npm start",
"test": "npm run-script front-prepare && npm run-script server-prepare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forbesmyester/esqlate.git"
},
"author": "Matt Forrester",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/forbesmyester/esqlate/issues"
},
"homepage": "https://github.com/forbesmyester/esqlate#readme",
"dependencies": {
"commander": "^4.1.1",
"esqlate-front": "^1.0.10",
"esqlate-server": "^1.1.8",
"get-port": "^5.1.0",
"open": "^7.0.0"
},
"devDependencies": {
"chai-colors": "^1.0.1",
"cypress": "^3.8.2"
}
}