-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "mywebclass.org",
"version": "0.1.0",
"description": "Help for students and teachers learning advanced technologies.",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "npx standard && python -m pytest -c pytest.ini && npx playwright test --config=playwright.config.js",
"start": "webpack serve --open --config webpack.config.dev.js",
"build": "webpack --config webpack.config.prod.js",
"grade": "python -m pytest -c pytest_grade.ini && npx playwright test --config=playwright_grade.config.js"
},
"standard": {
"ignore": [
"public_html"
]
},
"eslintConfig": {
"extends": [
"semistandard",
"standard-jsx"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/NJIT-WIS/mywebclass.git"
},
"author": "Keith Williams @ NJIT.EDU",
"license": "MIT",
"bugs": {
"url": "https://github.com/NJIT-WIS/mywebclass/issues"
},
"homepage": "https://github.com/NJIT-WIS/mywebclass#readme",
"devDependencies": {
"@playwright/test": "^1.30.0",
"autoprefixer": "^10.4.13",
"bootstrap": "^5.2.3",
"css-loader": "^6.7.3",
"eslint": "^8.34.0",
"favicons": "^7.0.2",
"favicons-webpack-plugin": "^6.0.0",
"html-webpack-plugin": "^5.5.0",
"i": "^0.3.7",
"live-server": "^1.2.2",
"mini-css-extract-plugin": "^2.7.2",
"playwright": "^1.30.0",
"postcss-loader": "^7.0.2",
"sass": "^1.58.0",
"sass-loader": "^13.2.0",
"standard": "^17.0.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"bootstrap-icons": "^1.10.3"
}
}