forked from DDMAL/Neon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.31 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
96
97
98
99
100
101
102
{
"name": "Neon",
"version": "6.0.0",
"description": "A web-based editor for correcting MEI-Neume files",
"main": "server.js",
"license": "MIT",
"author": {
"name": "DDMAL",
"url": "https://ddmal.music.mcgill.ca"
},
"contributors": [
{
"name": "Zoé McLennan",
"url": "https://github.com/zoemcl"
},
{
"name": "Juliette Regimbal",
"url": "https://github.com/JRegimbal"
},
{
"name": "Andrew Tran",
"url": "https://github.com/ATranimal"
}
],
"homepage": "https://github.com/DDMAL/Neon",
"repository": {
"type": "git",
"url": "https://github.com/DDMAL/Neon.git"
},
"bugs": {
"url": "https://github.com/DDMAL/Neon/issues"
},
"scripts": {
"start": "http-server deployment/server/",
"build": "rm -rf deployment/server/Neon-gh && webpack --config webpack.config.js && cp -R assets src/workers deployment/server/Neon-gh",
"bundle:pages": "rm -rf dist/Neon/Neon-gh && webpack --config webpack.pages-config.js && cp -R assets src/workers dist/Neon/Neon-gh",
"dev": "webpack --config webpack.dev.config.js",
"doc": "typedoc --out ./doc --mode modules ./src",
"cypress:open": "cypress open",
"cypress:test": "cypress run",
"test": "cypress open"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/test/ConvertMei.test.ts"
],
"moduleNameMapper": {
"Validation": "<rootDir>/test/SubstituteValidation.ts",
"VerovioWrapper": "<rootDir>/test/VerovioWrapper.ts"
},
"preset": "ts-jest/presets/js-with-ts"
},
"dependencies": {
"d3": "^5.11.0",
"diva.js": "github:DDMAL/diva.js#master",
"http-server": "^14.1.1",
"jsonschema": "^1.2.4",
"pouchdb": "^7.1.1",
"vkbeautify": "^0.99.3"
},
"devDependencies": {
"@types/d3": "^5.11.0",
"@types/diva.js": "^6.0.1",
"@types/elementtree": "^0.1.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.8",
"@types/pouchdb": "^6.4.0",
"@types/request": "^2.48.2",
"@types/selenium-webdriver": "^4.0.2",
"@types/uuid": "^8.0.0",
"@types/webpack": "^4.39.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"bulma": "^0.9.0",
"bulma-extensions": "^6.2.7",
"bulma-slider": "^2.0.0",
"cypress": "13.10.0",
"eslint": "^7.6.0",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"hard-source-webpack-plugin": "^0.13.1",
"jest": "^26.2.2",
"multer": "^1.4.2",
"nodemon": "^2.0.2",
"pouchdb-adapter-memory": "^7.2.1",
"pouchdb-core": "^7.2.1",
"pug": "^3.0.0",
"request": "^2.88.0",
"selenium-webdriver": "^4.0.0-alpha.1",
"source-map": "^0.7.3",
"ts-jest": "^26.1.4",
"ts-loader": "~8.2.0",
"typedoc": "^0.18.0",
"typescript": "4.6.4",
"uuid": "^8.3.0",
"webpack": "^4.12.0",
"webpack-command": "^0.5.0",
"webpack-dev-server": "^4.9.0",
"worker-loader": "^3.0.0"
}
}