generated from paulsmithkc/awd1000_base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 798 Bytes
/
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
{
"name": "awd1000_base",
"version": "1.0.0",
"description": "",
"main": "server.js",
"license": "MIT",
"engines": {
"node": "16.9.1"
},
"scripts": {
"start": "node server.js",
"start-dev": "npx nodemon server.js",
"ngrok": "npx ngrok http 3000",
"eslint": "npx eslint",
"stylelint": "npx stylelint '**/*.css'",
"html-validate": "npx html-validate '**/*.html'"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1"
},
"devDependencies": {
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-document-write": "^1.0.0",
"eslint-plugin-import": "^2.23.4",
"html-validate": "^4.14.0",
"prettier": "^2.3.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
}
}