-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "pedantriche",
"version": "0.0.1",
"description": "Helper to find words of certain length, part-of-speech and initial letter (vowel or consonant) in french to cheat at pedantix",
"author": "dhmmasson",
"license": "MIT",
"main": "./bin/www",
"keywords": [
"pedantix",
"french",
"javascript",
"node",
"tool",
"helper",
"cheat",
"words"
],
"scripts": {
"start": "node ./bin/www",
"test": "echo \"Error: no test specified\" && exit 1",
"install": "cp node_modules/materialize-css/dist/js/materialize.min.js public/javascripts ; cp -r node_modules/materialize-css/sass/* public/stylesheets",
"debug": "sass --watch public/stylesheets/style.scss:public/stylesheets/style.css & nodemon ./bin/www"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "^4.18.2",
"http-errors": "~1.6.3",
"materialize-css": "^1.0.0-rc.2",
"morgan": "~1.9.1",
"node-sass": "^9.0.0",
"node-sass-middleware": "1.0.1",
"papaparse": "^5.4.1",
"pug": "3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhmmasson/pedantriche.git"
},
"bugs": {
"url": "https://github.com/dhmmasson/pedantriche/issues"
},
"homepage": "https://github.com/dhmmasson/pedantriche#readme",
"devDependencies": {
"csv-parse": "^5.4.0"
}
}