forked from skittleskittles/Human_AI_Interaction
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.9 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
{
"name": "demo",
"source": "./pages/index.html",
"version": "1.0.0",
"keywords": [],
"author": "",
"description": "",
"license": "ISC",
"homepage": "https://skittleskittles.github.io/Human_AI_Interaction/",
"staticFiles": {
"staticPath": [
"public",
"assets"
]
},
"scripts": {
"start": "webpack serve --open --no-cache",
"build": "webpack --mode production --no-cache",
"deploy": "npm run build && gh-pages -d dist",
"generate-trials": "node scripts/generateTrials.mjs",
"generate-difficulty-trials": "node scripts/generateTrials.mjs --difficulty",
"split-difficulty-trials": "node scripts/splitTrialsForDifficultyCheck.mjs",
"db:export:users": "cd scripts/firebase && node exportUsers.js",
"db:export:difficulty": "cd scripts/firebase && node exportDifficultyCheckSets.js",
"db:delete-test:users": "cd scripts/firebase && node deleteTestUsers.js",
"db:delete-test:difficulty": "cd scripts/firebase && node deleteTestDifficultyUsers.js",
"db:migrate:users": "cd scripts/firebase && node migrateUsers.js",
"db:migrate:difficulty": "cd scripts/firebase && node migrateDifficultyCheckSets.js"
},
"files": [
"src/*"
],
"dependencies": {
"firebase": "^11.4.0",
"mathjs": "^14.3.0"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@eslint/js": "^9.21.0",
"babel-loader": "^10.0.0",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.1",
"eslint": "^9.21.0",
"file-loader": "^6.2.0",
"gh-pages": "^6.3.0",
"globals": "^16.0.0",
"html-webpack-plugin": "^5.6.3",
"process": "^0.11.10",
"style-loader": "^4.0.0",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"browserslist": [
"last 1 chrome version"
]
}