-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "musicoin-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"apollo-cache-inmemory": "^1.1.7",
"apollo-client": "^2.2.3",
"apollo-link-http": "^1.3.3",
"d3-scale": "^2.0.0",
"eslint-plugin-react": "^7.7.0",
"extract-react-intl-messages": "^0.7.1",
"graphql": "^0.13.0",
"graphql-tag": "^2.7.3",
"graphql-tools": "^2.20.2",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"lodash-es": "^4.17.21",
"numeral": "^2.0.6",
"polished": "^1.8.1",
"prettier": "^1.7.4",
"react": "^16.8.6",
"react-animated-number": "^0.4.4",
"react-apollo": "^2.1.0",
"react-app-rewire-styled-components": "^3.0.0",
"react-app-rewired": "^1.3.4",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-icons-kit": "^1.3.1",
"react-intl": "^2.4.0",
"react-router-dom": "^4.2.2",
"react-scripts": "^1.1.1",
"styled-components": "^2.2.3",
"text-gradient": "^0.2.0",
"typography": "^0.16.6"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"precommit": "lint-staged",
"extract-translations": "NODE_ENV=production extract-messages -l=ru,fr,es,en -o src/assets/translations -d en --flat true 'src/**/i18n.js'"
},
"lint-staged": {
"*.js": [
"prettier --config .prettierrc --write",
"git add"
]
}
}