-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.73 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "chromatic-tuner-web-app",
"version": "0.0.1",
"description": "Tune any instrument on any device",
"scripts": {
"clean": "rm -rf ./dist",
"start": "webpack-dev-server --hot --inline --host 0.0.0.0",
"build:dev": "npm run clean; webpack -d",
"build:prod": "npm run clean; webpack -p",
"oghliner": "oghliner offline ./dist/; npm run post-offline; oghliner deploy ./dist/",
"deploy": "npm run build:prod; npm run oghliner",
"post-offline": "cp CNAME ./dist"
},
"author": "Harald Kirschner <npm@digitarald.com> (http://digitarald.de/)",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.2.3",
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.1",
"babel-plugin-transform-class-constructor-call": "^6.5.0",
"babel-plugin-transform-class-properties": "^6.5.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-arrow-functions": "^6.5.2",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.5.0",
"babel-plugin-transform-es2015-block-scoping": "^6.6.5",
"babel-plugin-transform-es2015-classes": "^6.5.2",
"babel-plugin-transform-es2015-computed-properties": "^6.5.2",
"babel-plugin-transform-es2015-destructuring": "^6.5.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.5.2",
"babel-plugin-transform-es2015-object-super": "^6.5.0",
"babel-plugin-transform-es2015-parameters": "^6.5.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.5.0",
"babel-plugin-transform-es2015-spread": "^6.5.2",
"babel-plugin-transform-export-extensions": "^6.5.0",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-preset-modern": "^1.0.1",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "2.2.0",
"eslint-config-standard": "^5.1.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"event-emitter": "^0.3.4",
"extract-text-webpack-plugin": "^1.0.0",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.9.0",
"normalize.css": "^3.0.3",
"oghliner": "^1.0.5",
"postcss-cssnext": "^2.4.0",
"postcss-custom-properties": "^5.0.0",
"postcss-import": "^8.0.2",
"postcss-loader": "^0.8.0",
"postcss-nested": "^1.0.0",
"postcss-reporter": "^1.3.3",
"postcss-simple-extend": "^1.0.0",
"postcss-simple-vars": "^1.2.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0",
"webpack-sources": "^0.1.0",
"wolfy87-eventemitter": "^4.3.0",
"worker-loader": "^0.7.0"
},
"dependencies": {
"md-gum-polyfill": "^1.0.0"
}
}