-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"name": "codinsky",
"version": "0.0.1",
"description": "Code Infographics",
"repository": "[email protected]:Izhaki/codinsky.git",
"author": "Izhaki <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"website"
],
"scripts": {
"build": "lerna run build",
"test": "lerna run test",
"lint": "eslint .",
"start": "webpack-dev-server --config ./website/webpack.config.js",
"website": "webpack --config ./website/webpack.config.js && gh-pages -d website/dist"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.1.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^2.0.1",
"lerna": "^3.6.0",
"prettier": "^1.15.3",
"rollup": "^0.68.0",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0"
}
}