-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "todo-app",
"version": "1.0.1",
"description": "Todo app (vanilla js) using TDD approach.",
"main": "js/main.js",
"scripts": {
"dev": "parcel serve src/index.html",
"e2e": "npm-run-all --parallel dev cypress",
"cypress": "cypress open",
"test": "mocha --ui tdd --reporter list --exclude test/*-old* --require ./test/test-helper.js --require esm",
"test:watch": "yarn test --growl --watch",
"build": "parcel build src/index.html",
"deploy": "surge dist tasks.surge.sh"
},
"author": "Yishai Zehavi ([email protected])",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"chai": "^4.2.0",
"cypress": "^4.3.0",
"cz-conventional-changelog": "3.1.0",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"jsdom": "^16.2.2",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.1",
"parcel-bundler": "^1.12.4",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"lit-html": "^1.2.1",
"pouchdb": "^7.2.1",
"pouchdb-adapter-memory": "^7.2.1",
"pouchdb-find": "^7.2.1",
"rxjs": "^6.5.5"
}
}