-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 829 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 829 Bytes
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
{
"name": "example-node-server",
"version": "1.0.0",
"description": "Example Node Server w/ Babel",
"main": "lib/index.js",
"scripts": {
"build": "babel lib -d dist && npx browserify dist/index.js -o dist/main.js",
"start:firefox": "web-ext run --source-dir ./dist",
"dev": "nodemon --ignore './dist/' -e js --exec \"npm run build\"",
"start": "npm run build",
"test": "npm run build && npx jest"
},
"author": "James Kyle <me@thejameskyle.com>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"browserify": "^17.0.0",
"jest": "^26.6.1",
"nodemon": "^1.17.5",
"web-ext": "^7.9.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"chess.js": "^0.11.0"
}
}