-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.06 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
{
"name": "jssAudioExample",
"description": "HTML5 Audio visualization example",
"version": "1.0.0",
"private": true,
"author": {
"name": "Pavel Davyodv",
"email": "typical000@gmail.com"
},
"repository": {
"type": "git",
"url": "git@github.com:typical000/jss-audio-visualization-example.git"
},
"license": "MIT",
"scripts": {
"dev-server": "cross-env NODE_ENV=development PORT=3000 node ./bin/webpack-dev-server.js",
"clean": "rimraf -fr './docs/**'",
"build:dev": "npm run clean && cross-env NODE_ENV=development webpack --config ./webpack.config.dev",
"build:prod": "npm run clean && cross-env NODE_ENV=production webpack --config ./webpack.config.prod",
"lint": "eslint ./src",
"lint:staged": "lint-staged",
"start": "npm run lint && npm run all:prod"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.23.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-jss": "^3.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"express": "^4.15.3",
"lint-staged": "^3.4.2",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.1",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"is-mobile": "^0.2.2",
"jss": "^7.1.2",
"jss-preset-default": "^2.0.0",
"lodash": "^4.17.4",
"normalize-jss": "^3.1.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-jss": "^6.1.1",
"stats.js": "^0.17.0",
"whatwg-fetch": "^2.0.3"
},
"lint-staged": {
"./src ./tests ./*.js": [
"eslint",
"git add"
]
},
"pre-commit": "lint:staged"
}