-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.13 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
{
"name": "meow",
"version": "1.0.0",
"description": "Meow, I didn't know the browser could do that",
"author": "Sambego <sambellen@gmail.com>",
"license": "MIT",
"scripts": {
"build:prod": "NODE_ENV=production rm -rf dist/ && webpack -p --env production",
"build:dev": "webpack-dev-server --content-base dist --inline --hot --progress",
"git:clean": "git fetch -p",
"lint": "eslint src/js",
"test:jest": "jest",
"rebuild:sass": "npm rebuild node-sass"
},
"dependencies": {
"classnames": "^2.2.5",
"copy-webpack-plugin": "^4.0.1",
"firebase": "^3.7.2",
"frequency-calculator": "^0.0.8",
"google-maps-api": "^2.0.1",
"gyronorm": "^2.0.6",
"keycode": "^2.1.8",
"linkref": "^1.0.1",
"prismjs": "^1.6.0",
"proptypes": "^0.14.4",
"tracking": "^1.1.3"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.3.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-preset-env": "^1.1.8",
"babel-preset-latest": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.26.1",
"dotenv-webpack": "^1.4.3",
"eslint": "^3.15.0",
"eslint-loader": "^1.6.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^1.1.5",
"html-webpack-include-assets-plugin": "^0.0.3",
"html-webpack-plugin": "^2.28.0",
"jest": "^18.1.0",
"node-sass": "^4.11.0",
"postcss-loader": "^1.3.0",
"preact": "^7.2.0",
"preact-render-to-string": "^3.5.0",
"preact-router": "^2.4.1",
"raw-loader": "^0.5.1",
"remove": "^0.1.5",
"sass-loader": "^6.0.0",
"style-loader": "^0.13.1",
"svg-inline-loader": "^0.7.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-dotenv-plugin": "^2.0.0"
},
"jest": {
"coverageDirectory": "tests/__coverage__",
"testPathDirs": [
"tests"
],
"globals": {},
"moduleNameMapper": {
"^.+\\.(css|scss)$": "<rootDir>/tests/__mocks__/style.js",
"^.+\\.(gif|ttf|eot|svg)$": "<rootDir>/tests/__mocks__/file.js"
}
}
}