-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
53
54
55
56
57
58
59
60
{
"name": "mac.are.na.dos",
"version": "0.1.0",
"private": true,
"description": "Are.na channel -> Music",
"scripts": {
"precommit": "lint-staged",
"lint": "eslint ./",
"start-js": "react-scripts start",
"build-css": "node-sass src/styles -o src/styles",
"watch-css": "npm run build-css && node-sass src/styles -o src/styles --watch --recursive",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"keywords": [
"are.na",
"api",
"youtube",
"soundcloud",
"mp3"
],
"author": "Charles Broskoski <[email protected]>",
"contributors": [
"Gavin Atkinson"
],
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write --no-semi",
"git add"
]
},
"license": "MIT",
"prettier": {
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"classnames": "^2.2.5",
"eslint-plugin-react": "^7.6.1",
"he": "^1.1.1",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"moment": "^2.20.1",
"prettier": "^1.10.2",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-player": "^1.1.1",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"node-sass": "^4.7.2",
"npm-run-all": "^4.1.2",
"react-scripts": "^1.1.1"
}
}