-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.63 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
{
"name": "mac.are.na.dos",
"version": "0.1.0",
"private": true,
"description": "Are.na channel -> Music",
"engines": {
"node": "20.x"
},
"scripts": {
"precommit": "lint-staged",
"lint": "eslint ./",
"start-js": "react-scripts start",
"build-css": "sass src/styles/index.scss src/styles/index.css",
"watch-css": "npm run build-css && sass src/styles/index.scss src/styles/index.css --watch",
"dev": "npm-run-all -p watch-css start-js",
"start": "serve -s build",
"build": "npm run build-css && SKIP_PREFLIGHT_CHECK=true react-scripts build",
"heroku-postbuild": "npm run build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"keywords": [
"are.na",
"api",
"youtube",
"soundcloud",
"mp3"
],
"author": "Charles Broskoski <cab@are.na>",
"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",
"serve": "^14.2.0"
},
"devDependencies": {
"sass": "^1.60.0",
"npm-run-all": "^4.1.2",
"react-scripts": "^1.1.1"
}
}