-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.49 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
90
91
92
93
94
95
96
{
"name": "rainbow-rex-2",
"version": "1.1.0",
"description": "Colour Picker Game for Dinosaurs",
"main": "index.jsx",
"scripts": {
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"start": "webpack-dev-server --progress --profile --colors",
"pretest": "yarn lint",
"test": "jest",
"lint": "standard",
"fix-lint": "standard --fix",
"fix-css": "stylefmt"
},
"author": "Jared Tong",
"license": "ISC",
"standard": {
"ignore": [
"./public/",
"webpack.*",
"postcss.*"
],
"globals": [
"describe",
"test",
"jest",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"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)$": "identity-obj-proxy"
}
},
"dependencies": {
"react": "15.4.1",
"react-dom": "15.4.1"
},
"devDependencies": {
"autoprefixer": "^6.7.0",
"babel-core": "6.21.0",
"babel-jest": "^18.0.0",
"babel-loader": "6.2.10",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-runtime": "^6.20.0",
"css-loader": "0.26.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "0.9.0",
"git-scripts": "^0.2.1",
"html-webpack-plugin": "^2.24.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^18.1.0",
"node-sass": "^4.1.1",
"postcss-loader": "^1.2.0",
"query-string": "^4.3.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^15.4.2",
"sass-loader": "^4.0.2",
"standard": "^8.6.0",
"standard-loader": "^5.0.0",
"style-loader": "0.13.1",
"stylefmt": "^5.1.1",
"stylelint-config-standard": "^15.0.1",
"stylelint-webpack-plugin": "^0.5.1",
"surge": "^0.18.0",
"url-loader": "0.5.7",
"webpack": "1.14.0",
"webpack-cleanup-plugin": "^0.4.1",
"webpack-dev-server": "1.16.2"
},
"git": {
"scripts": {
"pre-push": "yarn test && yarn build && ./node_modules/.bin/surge --project ./public --domain rainbowrex.surge.sh"
}
},
"keywords": [
"game",
"react",
"weedle-boilerplate"
]
}