-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "react-sourcebuffer-montage",
"version": "1.0.0",
"license": "SEE LICENSE IN credentials.html",
"main": "lib/index.js",
"scripts": {
"build": "npm run compile && npm run less",
"less": "lessc src/styles/styles.less lib/styles.css",
"compile": "babel -d lib/ src/",
"dev": "NODE_ENV=development nodemon --watch src --exec npm run build",
"lint": "eslint src"
},
"author": "[email protected]",
"pre-commit": {
"run": [
"lint"
],
"colors": false,
"silent": false
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.26.0",
"eslint": "^4.19.1",
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-react": "^7.8.2",
"less": "^3.0.4",
"pre-commit": "^1.2.2"
},
"dependencies": {
"font-awesome": "^4.7.0",
"lodash.debounce": "^4.0.8",
"lodash.flatten": "^4.4.0",
"lodash.throttle": "^4.1.1",
"rc-slider": "github:slopen/slider",
"rc-tooltip": "^3.7.2",
"react": "^16.3.2"
}
}