forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.7 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
{
"name": "codesandbox",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn build:dependents && yarn build:prod",
"build:prod":
"lerna run build --scope app --scope homepage --parallel && gulp",
"build:dependents":
"lerna run build --ignore app --ignore homepage --parallel",
"start": "lerna run start --parallel",
"start:test": "lerna run start:test --scope app --stream",
"start:dev_api":
"lerna run start --parallel --ignore app & lerna run start:dev_api --scope app --stream",
"test": "lerna run test",
"test:integrations": "lerna exec --scope app --stream -- yarn test:integrations",
"lint": "lerna run lint",
"add-contributor": "all-contributors add",
"generate": "all-contributors generate",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": ["prettier --write --single-quote --trailing-comma es5", "git add"],
"*.css": [
"prettier --write --single-quote --trailing-comma es5",
"git add"
],
"*.json": [
"prettier --write --single-quote --trailing-comma es5",
"git add"
]
},
"workspaces": ["packages/**"],
"devDependencies": {
"all-contributors-cli": "^4.3.0",
"babel-eslint": "^7.2.3",
"eslint": "CompuIves/eslint#add/define-parser",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-prettier": "^2.1.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "~7.4.0",
"gulp": "^3.9.1",
"lerna": "^2.5.1",
"lint-staged": "^5.0.0",
"prettier": "^1.8.2"
}
}