forked from DDMAL/Neon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.39 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
{
"name": "Neon",
"version": "3.1.1",
"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": "nodemon server.js",
"build": "./setup-verovio && webpack --config webpack.config.js",
"test": "jest --silent",
"doc": "jsdoc -d ./doc/ ./src/ ./src/SingleEdit/ ./src/SingleView/ ./src/utils/ -R ./README.md",
"pages": "./setup-verovio && webpack --config webpack.pages-config.js && cp public/verovio-toolkit.js dist/verovio-toolkit.js"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"moduleNameMapper": {
"Validation": "<rootDir>/test/SubstituteValidation.js"
}
},
"babel": {
"presets": "env"
},
"dependencies": {
"express": "^4.16.3",
"fs-extra": "^8.0.1",
"multer": "^1.3.0",
"nodemon": "^1.17.5",
"pug": "^2.0.3",
"request": "^2.88.0",
"verovio-dev": "file:src/verovio-dev"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"bulma": "^0.7.1",
"bulma-extensions": "^2.2.1",
"bulma-slider": "^2.0.0",
"css-loader": "^0.28.11",
"d3": "^5.5.0",
"file-loader": "^1.1.11",
"jest": "^23.1.0",
"jquery": "^3.4.1",
"jsdoc": "^3.5.5",
"pouchdb": "^7.0.0",
"raw-loader": "^2.0.0",
"selenium-webdriver": "^4.0.0-alpha.1",
"semistandard": "^13.0.1",
"style-loader": "^0.21.0",
"uuid": "^3.3.2",
"verovio-dev": "file:src/verovio-dev",
"webpack": "^4.12.0",
"webpack-command": "^0.2.1",
"worker-loader": "^2.0.0"
}
}