-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.39 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "logiclearner",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:dev": "webpack --define-process-env-node-env development",
"build:prod": "webpack --define-process-env-node-env production",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"cypress:test": "start-server-and-test 'make integrationserver' http://127.0.0.1:8000 cypress:run",
"dev": "webpack --define-process-env-node-env development --watch",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit -p tsconfig.json",
"eslint": "eslint --ext .js,.tsx src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccnmtl/logiclearner.git"
},
"author": "Natalia Dittren natalia.d@columbia.edu",
"license": "MIT",
"bugs": {
"url": "https://github.com/ccnmtl/logiclearner/issues"
},
"homepage": "https://github.com/ccnmtl/logiclearner#readme",
"dependencies": {
"@popperjs/core": "^2.11.2",
"babel-loader": "^9.0.1",
"bootstrap": "^5.1.1",
"postcss": "^8.1.2",
"precss": "^4.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-ga4": "~2.1.0",
"react-router-dom": "^6.0.2",
"typescript": "^5.4.5"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.0",
"axe-core": "^4.1.4",
"css-loader": "^7.0.0",
"cypress": "^13.1.0",
"cypress-axe": "^1.0.0",
"eslint": "^9.8.0",
"eslint-plugin-cypress": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-security": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.3.0",
"postcss-loader": "^8.0.0",
"sass": "^1.27.0",
"sass-loader": "^16.0.0",
"start-server-and-test": "^2.0.0",
"style-loader": "^4.0.0",
"ts-jest": "^29.1.4",
"ts-loader": "^9.0.0",
"webpack": "^5.52.1",
"webpack-cli": "^5.0.0",
"whatwg-fetch": "3.6.2"
}
}