-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "react-farkle",
"version": "1.0.0",
"description": "A react sandbox for making a game",
"main": "index.js",
"scripts": {
"up": "docker-compose -f docker-compose.dev.yml up -d ",
"down": "docker-compose -f docker-compose.dev.yml down",
"test": "./node_modules/.bin/ava --verbose",
"webpack": "./node_modules/.bin/webpack",
"watch": "./node_modules/.bin/webpack --watch",
"sass": "./node_modules/.bin/node-sass -o build/css sass",
"watch-sass": "./node_modules/.bin/node-sass --watch --output build/css sass"
},
"author": "Rob Ballou",
"license": "ISC",
"devDependencies": {
"ava": "^0.25.0",
"babel-core": "^6.26.0",
"babel-jest": "^24.8.0",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-15": "^1.0.0",
"jest": "^24.8.0",
"lz-string": "^1.4.4",
"node-sass": "^4.5.3",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^15.6.2",
"sinon": "^4.0.0",
"uglifyjs-webpack-plugin": "^1.0.0-beta.3",
"webpack": "^3.5.6"
},
"dependencies": {
"lodash": "^4.17.15",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"jest": {
"transform": {}
}
}