-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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": "2048",
"description": "a clone of my favorite casual game",
"repository": {
"type": "git",
"url": "https://github.com/shawndromat/2048"
},
"scripts": {
"dev": "webpack -d --watch",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Shawna Mattison",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.7",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.3",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "^21.2.1",
"node-sass": "^4.6.0",
"redux-devtools": "^3.4.0",
"sass-loader": "^6.0.6",
"webpack": "^3.6.0"
},
"jest": {
"setupFiles": [
"./enzymeConfiguration.js"
]
}
}