-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.84 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "feedback-manager",
"version": "0.0.0",
"private": true,
"nodemonConfig": {
"exec": "npm run dev",
"watch": [
"server/*",
"public/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"scripts": {
"start": "npm run prod",
"build": "npm-run-all clean transpile",
"server": "SET STRATEGIES_FOLDER=strategies& node ./dist-server/bin/www",
"dev": "SET NODE_ENV=development & npm-run-all build server",
"prod": "NODE_ENV=production npm-run-all build server",
"transpile": "babel ./server --out-dir dist-server",
"clean": "rimraf dist-server",
"watch:dev": "nodemon",
"test": "nyc mocha server/test/basicTest.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.36.3",
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"assert": "^2.0.0",
"cache": "^3.0.0",
"chai": "^4.3.6",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "~4.16.1",
"mocha": "^9.2.1",
"mocha-logger": "^1.0.7",
"mocha-simple-html-reporter": "^2.0.0",
"mochawesome": "^7.0.1",
"moment-timezone": "^0.5.34",
"mongodb": "^4.3.1",
"morgan": "~1.9.1",
"nodemon": "^2.0.14",
"npm-run-all": "^4.1.5",
"openai": "^4.35.0",
"perf_hooks": "0.0.1",
"programming-exercise-juezlti": "^1.1.7",
"rimraf": "^3.0.2"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"devDependencies": {
"axios": "^0.26.1",
"nyc": "^15.1.0"
}
}