forked from techswitch-learners/Chessington-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 743 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 743 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
{
"name": "chessington",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"clean": "del-cli dist/**/* logs/*",
"bundle": "webpack",
"build": "npm run clean && babel ./src --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files && npm run bundle",
"start": "npm run build && node dist/index.js",
"test": "mocha --compilers js:babel-core/register \"./tests/**/*.spec.js\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"del-cli": "^1.1.0",
"mocha": "^4.0.1",
"webpack": "^3.6.0"
},
"dependencies": {
"express": "^4.16.1"
}
}