-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.01 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
50
51
52
53
54
{
"name": "todastic",
"version": "0.0.0",
"description": "Simple self-, project- and task management.",
"main": "lib/index.js",
"scripts": {
"bootstrap": "npm install && lerna bootstrap",
"build": "lerna run build",
"clean": "lerna run clean",
"format": "prettier --write 'tests/**/*.js' && lerna run format",
"start": "node ./packages/cli/src/cli.js",
"start-web": "node ./packages/server-web/src/start.js",
"storybook": "cd packages/server-web && npm run storybook",
"local": "npm run watch-web | npm run start-web",
"konsol": "node ./packages/konsol/src/konsol.js",
"user-add": "node ./packages/konsol/src/user-add.js",
"storyshots": "cd packages/server-web && npm run test:storyshots",
"upload-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"combine-coverage": "istanbul report --root coverage",
"test": "run-s test:* combine-coverage",
"test:integration": "jest",
"test:packages": "lerna run test",
"test-ci": "run-s test-ci:* combine-coverage upload-coverage",
"test-ci:integration": "jest --ci --detectOpenHandles",
"test-ci:packages": "lerna run test-ci",
"test-browser": "./node_modules/.bin/codeceptjs run --steps --config=integration-test/codecept.json",
"watch-web": "cd packages/server-web && npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/compose-us/todastic.git"
},
"keywords": [],
"author": "Joern Bernhardt <[email protected]> (http://www.unreleased.de)",
"license": "MIT",
"bugs": {
"url": "https://github.com/compose-us/todastic/issues"
},
"homepage": "https://github.com/compose-us/todastic#readme",
"dependencies": {
"@todastic/cli": "^0.1.1"
},
"devDependencies": {
"codeceptjs": "^1.4.3",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"jest": "^23.5.0",
"lerna": "^2.11.0",
"mongoose": "^5.2.9",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.7",
"puppeteer": "^1.9.0"
}
}