-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "pebble-firmware-vibes",
"version": "1.0.0",
"description": "Create and generate Pebble vibrations for tintin.",
"scripts": {
"build": "webpack --config webpack-prod.config.js --colors",
"dev": "webpack-dev-server --config webpack-dev.config.js --watch --colors"
},
"author": "orviwan",
"license": "MIT",
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"semi": 2
}
},
"devDependencies": {
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"css-loader": "^0.23.1",
"eslint": "^2.10.2",
"eslint-loader": "^1.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.17.0",
"node-normalize-scss": "^1.4.0",
"node-sass": "^3.7.0",
"sass-loader": "^3.2.3",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"babel-polyfill": "^6.9.0",
"detect-dom-ready": "^1.0.2",
"json-query": "^2.2.0"
}
}