-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.56 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
{
"name": "Json-object-traverser",
"version": "1.0.0",
"description": "This application parses JSON into an object and provides the ability retrieve the cahin call leading to the key.",
"main": "index.js",
"private": true,
"scripts": {
"start": "NODE_ENV=development && webpack-dev-server --open",
"lint": "eslint --quiet --fix **/*.js",
"test": "NODE_ENV=test jest",
"test:update": "NODE_ENV=test jest -u",
"build": "NODE_ENV='production' webpack -p"
},
"jest": {
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"snapshotSerializers": [
"jest-serializer-enzyme"
]
},
"pre-commit": "lint",
"keywords": [],
"author": "Gregory Assasie",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-hot-loader": "^1.3.1",
"css-loader": "^0.28.7",
"enzyme": "^2.9.1",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-react": "^1.1.7",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"extract-text-webpack-plugin": "^3.0.0",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.0.2",
"jest-enzyme": "^3.8.2",
"jest-serializer-enzyme": "^1.0.0",
"jsdom-quokka-plugin": "^1.0.6",
"json-loader": "^0.5.7",
"node-sass": "4.12.0",
"pre-commit": "^1.2.2",
"react-addons-perf": "^15.4.2",
"react-test-renderer": "^15.6.1",
"sass-loader": "7.1.0",
"style-loader": "^0.18.2",
"webpack": "^3.5.6",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"axios": "^0.16.2",
"brace": "^0.10.0",
"lodash": "^4.17.4",
"normalize-scss": "^7.0.0",
"preact": "^8.2.7",
"preact-compat": "^3.17.0",
"prop-types": "^15.5.10",
"react": "^15.6.2",
"react-ace": "^5.2.0",
"react-dom": "^15.6.1",
"react-hot-loader": "next",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"shortid": "^2.2.8"
},
"quokka": {
"babel": true,
"plugins": [
"jsdom-quokka-plugin"
],
"ignore": "node_modules/"
}
}