This repository has been archived by the owner on Feb 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.57 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "proto-watch",
"version": "1.1.0",
"description": "Scaffoling for a proto watch app",
"author": "LevelUp",
"repository": {
"type": "git",
"url": "https://github.com/twlevelup/watch_edition"
},
"scripts": {
"start": "webpack-dev-server --host 0.0.0.0 --inline --hot",
"build": "webpack",
"test": "jest",
"test:dev": "jest --watchAll",
"ci": "npm -s run stylecheck && npm -s run test",
"todos": "fixme -p client/src/js && fixme -p client/spec/",
"stylecheck": "eslint client/src/js/ client/spec/ --fix",
"heroku-postbuild": "webpack --progress"
},
"dependencies": {
"babel": "^6.5.2",
"babel-loader": "^6.2.10",
"babel-plugin-dynamic-import-webpack": "^1.0.1",
"babel-plugin-syntax-class-properties": "6.13.0",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"css-loader": "^0.23.1",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"file-loader": "^0.8.5",
"handlebars-template-loader": "^0.6.0",
"html-webpack-plugin": "^2.26.0",
"http-server": "^0.9.0",
"json-loader": "^0.5.4",
"lodash": "^4.17.5",
"node-sass": "^4.7.2",
"npm": "^6.0.0",
"sass-loader": "^3.2.3",
"start": "^5.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"watch-framework": "file:./framework/"
},
"engines": {
"node": "9.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^21.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"fixme": "^0.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.2.1",
"jest-cli": "^22.4.2",
"jest-handlebars": "^1.0.1",
"jsdom": "^11.5.1",
"regenerator-runtime": "^0.11.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^1.12.1"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss|less)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.js$": "babel-jest",
"\\.hbs$": "jest-handlebars"
},
"moduleFileExtensions": [
"js"
],
"testRegex": "/client/spec/.*\\.spec\\.js$",
"testPathIgnorePatterns": [
"/node_modules/"
],
"moduleDirectories": [
"node_modules"
],
"collectCoverage": true,
"collectCoverageFrom": [
"client/src/js/**/*.js"
]
}
}