forked from codio/parsons-puzzle-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.51 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
{
"name": "parsons-puzzle-editor",
"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.js",
"lint": "eslint ./src/**/* --ext .js,.jsx,.ts,.tsx",
"start": "webpack-dev-server --open --config webpack.dev.js"
},
"files": [
"src/**/*",
"LICENSE",
"index.js"
],
"keywords": [
"Parsons Puzzle",
"UI"
],
"style": "src/style.css",
"dependencies": {
"cash-dom": "^8.1.5",
"esprima": "^4.0.1",
"js-base64": "^3.7.8",
"pako": "^2.1.0"
},
"devDependencies": {
"@types/esprima": "^4.0.2",
"@types/pako": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"autoprefixer": "^10.4.21",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"eslint": "^9.34.0",
"eslint-plugin-import": "^2.20.2",
"html-webpack-plugin": "^5.6.4",
"less": "^4.4.1",
"less-loader": "^12.3.0",
"mini-css-extract-plugin": "^2.9.4",
"postcss-loader": "^8.1.1",
"ts-loader": "^9.5.4",
"typescript": "^5.9.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^6.0.1"
}
}