-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "revjs",
"version": "1.0.0",
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"build-docs": "npm run build-mkdocs && npm run build-typedocs",
"build-mkdocs": "cd docs/mkdocs && docker-compose up && cp -R dist ../",
"build-typedocs": "lerna run build-docs",
"test": "lerna run test",
"test-ci": "lerna run test-ci",
"pack": "lerna run pack",
"updated": "lerna updated",
"publish": "npm run build && npm run test && lerna publish",
"publish-nobuild": "lerna publish",
"clean-modules": "lerna clean"
},
"devDependencies": {
"@babel/runtime": "7.0.0-beta.55",
"@types/chai": "4.1.4",
"@types/enzyme": "3.1.12",
"@types/graphql": "^0.13.4",
"@types/koa": "2.0.44",
"@types/koa-bodyparser": "4.2.0",
"@types/koa-router": "7.0.27",
"@types/mocha": "5.2.5",
"@types/prop-types": "15.x",
"@types/react": "16.x",
"@types/react-dom": "16.x",
"@types/rewire": "2.5.28",
"@types/sinon": "5.0.1",
"chai": "4.1.2",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"jsdom": "11.12.0",
"lerna": "3.0.0-rc.0",
"mocha": "5.2.0",
"mocha-circleci-reporter": "0.0.3",
"react": "16.x",
"react-dom": "16.x",
"rewire": "4.0.1",
"sinon": "6.1.4",
"ts-loader": "4.4.2",
"ts-node": "7.0.0",
"tslint": "5.11.0",
"typedoc": "0.11.1",
"typescript": "3.0.1",
"webpack": "4.16.4",
"webpack-cli": "3.1.0"
}
}