-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1 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
{
"name": "att-test-project",
"version": "0.0.1",
"description": "att test project",
"main": "index.js",
"scripts": {
"build": "babel src -d build",
"serve": "nodemon --exec ./node_modules/.bin/babel-node -- src/index.js",
"start": "npm run build && node build/index.js",
"test": "npm run build && mocha --timeout 60000 --require babel-polyfill --require babel-register --exit --recursive -- ./build"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/yiyao8932/att-test-project.git"
},
"author": "Ng",
"license": "ISC",
"homepage": "https://bitbucket.org/yiyao8932/att-test-project#readme",
"dependencies": {
"koa": "^2.4.1",
"koa-router": "^7.3.0",
"node-fetch": "^1.7.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^5.0.0",
"nodemon": "^1.14.11"
}
}