-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
95 lines (95 loc) · 3 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "romajs",
"version": "1.2.0",
"description": "Roma: a TEI customization tool in React+Redux",
"type": "module",
"main": "index.js",
"scripts": {
"test": "npm run eslint && mocha --recursive --require babel-core/register --require ./test/setup.js",
"test:nolint": "mocha --recursive --require babel-core/register --require ./test/setup.js",
"test:watch": "npm test -- --watch",
"test:single": "eslint $SCRIPT && mocha --require babel-core/register --require ./test/setup.js $SCRIPT",
"testw:single": "eslint %SCRIPT% && mocha --require babel-core/register --require ./test/setup.js %SCRIPT%",
"echo": "echo",
"start": "vite",
"build": "rimraf ./dist && npm run test && cross-env NODE_ENV=\"production\" vite build",
"lint-break-on-errors": "eslint ./source/js ./vite.config.js -f table --ext .js --ext .jsx",
"eslint": "eslint src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TEIC/romajs.git"
},
"keywords": [
"TEI",
"XML",
"customization",
"webapp"
],
"author": "Raff Viglianti",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TEIC/romajs/issues"
},
"homepage": "https://github.com/TEIC/romajs#readme",
"devDependencies": {
"@material/button": "0.43.0",
"@material/card": "0.43.0",
"@material/checkbox": "0.43.0",
"@material/chips": "0.43.0",
"@material/dialog": "0.43.0",
"@material/fab": "0.43.0",
"@material/image-list": "0.43.0",
"@material/layout-grid": "0.41.0",
"@material/linear-progress": "0.43.0",
"@material/menu": "0.43.0",
"@material/notched-outline": "0.43.0",
"@material/radio": "0.43.0",
"@material/select": "2.0.0",
"@material/tabs": "0.43.0",
"@material/textfield": "0.43.0",
"@material/theme": "0.43.0",
"@material/toolbar": "0.43.0",
"@material/typography": "0.43.0",
"axios": "^1.2.2",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"brace": "^0.11.1",
"connected-react-router": "^6.5.2",
"cross-env": "^5.2.0",
"dotenv": "^16.0.3",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.11.1",
"expect": "^1.20.2",
"express": "^4.16.3",
"file-saver": "^1.3.8",
"form-data": "^2.3.2",
"linkedom": "0.14.21",
"localforage": "^1.10.0",
"mocha": "^6.2.0",
"react": "^18.3.1",
"react-ace": "^7.0.4",
"react-dom": "^18.3.1",
"react-redux": "^7.1.1",
"react-resize-detector": "^4.0.5",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^4.0.4",
"redux-mock-store": "^1.5.3",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"rimraf": "^2.6.2",
"xmldom": "^0.6.0"
},
"dependencies": {
"@vitejs/plugin-react": "^4.3.2",
"react-blockly": "^8.1.1",
"sass": "^1.81.0",
"vite": "^5.4.11"
}
}