forked from raphamorim/react-ape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.23 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"private": true,
"workspaces": [
"packages/*",
"website"
],
"author": "Raphael Amorim",
"license": "MIT",
"scripts": {
"build": "node ./scripts/rollup",
"build-canvas": "cd node_modules/canvas-prebuilt/canvas && node-gyp rebuild",
"ci": "yarn test && yarn build",
"clean-node-modules": "find ./ -name 'node_modules' -exec rm -rf '{}' +",
"docs-build": "cd website && yarn run build",
"docs-publish": "cd website && yarn run docs-publish",
"docs-start": "cd website && yarn run start",
"jest": "jest --no-cache --bail --ci --runInBand",
"jest:ci": "jest --updateSnapshot",
"playground": "cd packages/playground && yarn run start",
"prepublishOnly": "yarn ci",
"prettier": "node ./scripts/prettier write-changed",
"prettier:all": "node ./scripts/prettier write",
"prettier:stat": "node ./scripts/prettier",
"test": "yarn flow && yarn prettier:stat && yarn jest",
"test:ci": "yarn flow && yarn prettier:stat && yarn jest:ci"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"babel-loader": "^8.0.5",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.1.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-jest": "24.1.0",
"babel-polyfill": "^6.26.0",
"canvas-prebuilt": "^1.6.11",
"chalk": "^2.4.1",
"docusaurus": "^1.7.2",
"flow-bin": "^0.109.0",
"flow-typed": "^2.6.1",
"glob": "^7.1.2",
"google-closure-compiler": "20190121.0.0",
"jest": "24.1.0",
"jsdom": "^13.2.0",
"lerna": "^3.10.8",
"prettier": "^1.5.3",
"react": "^16.10.1",
"react-reconciler": "^0.22.1",
"react-test-renderer": "^16.10.1",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-optimize-js": "^0.0.4",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-strip-banner": "^0.2.0",
"rollup-plugin-uglify": "^4.0.0",
"tmp": "~0.0.28"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
],
"roots": [
"<rootDir>/packages/react-ape"
],
"moduleDirectories": [
"node_modules"
],
"verbose": true
}
}