-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.46 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": "perfanalytics-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"build": "npm run build:dashboard && npm run build:testapp && npm run build:jslib",
"build:dashboard": "cd perfanalytics-dashboard && npm install && npm run build && cd ..",
"build:testapp": "cd test-client-react && npm install && npm run build && cd ..",
"build:jslib": "cd perfanalytics-js && npm install && npm run build && cd ..",
"watch:jslib": "cd perfanalytics-js && yarn watch",
"test": "npm run test:dashboard && ./node_modules/mocha/bin/mocha --exit --timeout 10000",
"test:dashboard": "cd perfanalytics-dashboard && yarn test && cd ..",
"install:dashboard": "cd perfanalytics-dashboard && npm install && cd ..",
"install:testapp": "cd test-client-react && npm install && cd ..",
"install:jslib": "cd perfanalytics-js && npm install && cd ..",
"install:all": "npm install && npm run install:dashboard && npm run install:testapp && npm run install:jslib",
"start:dashboard": "cd perfanalytics-dashboard && yarn start",
"start:testapp": "cd test-client-react && yarn start"
},
"dependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"mocha": "^8.1.3",
"mongoose": "^5.10.6",
"morgan": "~1.9.1"
}
}