-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.31 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.31 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
{
"name": "paris-0218-wild-connection",
"version": "1.0.0",
"description": "Wild Connection",
"main": "server.js",
"devDependencies": {},
"private": true,
"scripts": {
"server": "nodemon server --ignore client --ignore '*.json'",
"client": "serve client",
"test": "echo 'no tests'",
"lint": "npm run lint:js && npm run lint:css && npm run lint:html",
"lint:js": "standard | snazzy",
"fix": "standard --fix | snazzy",
"lint:css": "stylelint 'client/style/**/*.css'",
"lint:html": "htmllint 'client/**/*.html'"
},
"dependencies": {
"body-parser": "^1.18.2",
"browser-polyfill": "^3.20.2",
"express": "^4.16.3",
"express-session": "^1.15.6",
"htmllint-cli": "0.0.6",
"http-server": "^0.11.1",
"multer": "^1.3.0",
"mysql2": "^1.5.3",
"nodemon": "^1.17.3",
"session-file-store": "^1.2.0",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"stylelint": "^9.2.0",
"stylelint-config-recommended": "^2.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WildCodeSchool/paris-0218-wild-connection.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WildCodeSchool/paris-0218-wild-connection/issues"
},
"homepage": "https://github.com/WildCodeSchool/paris-0218-wild-connection#readme"
}