forked from a2seven/yoocheckout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 910 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
{
"scripts": {
"serve": "npm run lint && tsc-watch -p tsconfig.json --onSuccess 'node build/index.js'",
"build": "rm -rf build/* && npm run lint && tsc -p ./",
"lint": "npx tslint --project tsconfig.json --config tslint.json",
"test:unit": "mocha -r ts-node/register tests/**/*.spec.ts",
"helper": "node dev-helpers/commands.js"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/uuid": "^8.3.0",
"axios-mock-adapter": "^1.19.0",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9",
"tslint": "^6.1.3",
"typescript": "^4.1.3",
"fs-extra": "^9.0.1"
},
"dependencies": {
"@types/axios": "^0.14.0",
"axios": "^0.21.1",
"uuid": "^8.3.2"
}
}