-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.66 KB
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
{
"name": "contexture-imdb",
"version": "0.0.5",
"private": true,
"dependencies": {
"babel-polyfill": "^6.26.0",
"contexture": "^0.2.1",
"contexture-client": "^2.5.1",
"contexture-elasticsearch": "^0.6.8",
"contexture-react": "^0.3.1",
"elasticsearch-browser": "^14.0.0",
"futil-js": "^1.38.0",
"lodash": "4.17.4",
"mobx": "3.1.16",
"mobx-react": "4.2.1",
"mobx-utils": "^4.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.17",
"@storybook/addon-links": "^3.2.17",
"@storybook/react": "^3.2.17",
"@storybook/storybook-deployer": "^2.0.0",
"babel-eslint": "^8.0.2",
"duti": "^0.9.3",
"eslint": "^4.12.1",
"eslint-config-smartprocure": "^1.1.0",
"prettier": "^1.8.2",
"react-scripts": "1.0.7"
},
"scripts": {
"duti": "duti",
"duti:fix": "npm run lint-fix && npm run fmt",
"fmt": "prettier --write '{src,stories,__tests__,.storybook}/**/*'",
"lint": "eslint src stories .storybook .circleci __tests__",
"lint-ci": "npm run lint -- -o lint-results.json -f json",
"lint-fix": "npm run lint -- --fix",
"start": "react-scripts start",
"build": "react-scripts build",
"deploy": "npm run build && npm run static-server",
"static-server": "serve build --port 3000 --single",
"storybook": "start-storybook -p 3000 -s public",
"build-storybook": "build-storybook -s public",
"deploy-storybook": "storybook-to-ghpages"
},
"storybook-deployer": {
"commitMessage": "Deploy Storybook [ci skip]"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "es5"
}
}