-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.37 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
{
"name": "parsons-puzzle-ui",
"version": "1.0.0",
"description": "UI for building parsons puzzle https://js-parsons.github.io/ questions",
"private": true,
"repository": "git@github.com:codio/parsons-puzzle-ui.git",
"author": "Mikhail Loginov <mloginov@codio.com>",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.prod.mjs",
"lint": "eslint ./src/**/* --ext .js,.jsx,.ts,.tsx",
"start": "webpack serve --open --config webpack.dev.mjs"
},
"files": [
"src/**/*",
"LICENSE",
"index.js"
],
"keywords": [
"Parsons Puzzle",
"UI"
],
"style": "src/style.css",
"dependencies": {
"cash-dom": "^8.1.5",
"esprima": "^4.0.1"
},
"devDependencies": {
"@types/codemirror": "^5.60.17",
"@types/esprima": "^4.0.6",
"autoprefixer": "^10.4.22",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"eslint": "^9.39.1",
"html-webpack-plugin": "^5.6.5",
"less": "^4.4.2",
"less-loader": "^12.3.0",
"mini-css-extract-plugin": "^2.9.4",
"postcss-loader": "^8.2.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^6.0.1"
}
}