-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.14 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
{
"version": "0.3.1",
"private": true,
"devDependencies": {
"@knit/knit": "0.6.1",
"babel-plugin-relay": "1.0.1",
"eslint-config-prettier": "2.1.1",
"eslint-plugin-prettier": "2.1.1",
"jailbreak-react-scripts": "file:packages/jailbreak-react-scripts",
"npm-run-all": "^4.0.2",
"prettier": "1.3.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-scripts": "1.0.11"
},
"scripts": {
"knit": "knit",
"knit:clean": "rm -rf dist",
"knit:copy": "knit copy",
"knit:stitch": "knit stitch --parallel --scope unpublished",
"knit:build": "run-s knit:clean knit:copy knit:stitch",
"knit:publish": "npm run knit -- exec --scope unpublished --working-dir dist -- npm publish",
"preversion": "CI=1 run-s 'knit -- validate' test",
"version": "npm run knit -- exec --scope modified -- npm version --no-git-tag-version $npm_package_version && git add .",
"postversion": "run-s knit:build knit:publish",
"start": "BROWSER=none jailbreak-react-scripts start",
"build": "jailbreak-react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}