-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.73 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "app",
"version": "0.0.0",
"homepage": "https://animixer-1d266.firebaseapp.com/",
"private": true,
"dependencies": {
"@firebase/app": "^0.1.4",
"@firebase/auth": "^0.3.0",
"@firebase/firestore": "^0.9.3",
"api-ai-javascript": "^2.0.0-beta.21",
"artyom.js": "^1.0.6",
"async-work-queue": "^0.3.0",
"classnames": "^2.2.5",
"history": "^4.7.2",
"lodash": "^4.17.21",
"material-ui": "1.0.0-beta.24",
"prop-types": "^15.5.10",
"query-string": "^5.0.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-grid-gallery": "github:rehabstudio/react-grid-gallery#feature/style_props",
"react-relay": "^1.3.0",
"react-share": "^2.0.0",
"relay-runtime": "^1.3.0",
"request": "^2.79.0",
"request-promise": "^4.2.2",
"styled-components": "^2.1.2",
"universal-router": "^5.0.0"
},
"devDependencies": {
"api-ai-javascript": "^2.0.0-beta.21",
"babel-cli": "^6.26.0",
"babel-plugin-relay": "^1.3.0",
"babel-plugin-styled-components": "^1.2.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-prettier": "^2.4.0",
"flow-bin": "^0.61.0",
"gh-pages": "^1.0.0",
"husky": "^0.15.0-beta.16",
"lint-staged": "^6.0.0",
"pre-render": "^0.1.0-preview.2",
"prettier": "^1.6.1",
"react-scripts": "1.0.17",
"relay-compiler": "^1.3.0",
"stylelint": "^8.0.0",
"stylelint-config-primer": "^2.0.1",
"stylelint-config-standard": "^18.0.0",
"stylelint-config-styled-components-processor": "^0.1.1",
"stylelint-order": "^0.8.0",
"stylelint-processor-styled-components": "^1.2.1"
},
"lint-staged": {
"*.js": [
"eslint --no-ignore --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"scripts": {
"postinstall": "NODE_ENV=production ./node_modules/.bin/babel node_modules/api-ai-javascript --out-dir node_modules/.lib/api-ai-javascript && (cd ./functions && yarn install --no-lockfile)",
"precommit": "lint-staged",
"flow": "flow",
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"lint-style": "stylelint \"src/**/*.js\"",
"fix": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" --fix .",
"relay": "node ./setup --download-schema && relay-compiler --src ./src --schema ./src/schema.graphql",
"build": "node ./setup && react-scripts build && node ./render",
"test": "node ./setup && react-scripts test --env=jsdom",
"deploy": "node ./setup && react-scripts build && gh-pages -d build",
"start": "node ./setup && react-scripts start"
}
}