This repository was archived by the owner on Apr 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 2.76 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 2.76 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "playground",
"version": "0.1.0",
"description": "JavaScript playground",
"main": "webpack.config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dev-academy-programme/playground.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dev-academy-programme/playground/issues"
},
"homepage": "https://github.com/dev-academy-programme/playground#readme",
"dependencies": {
"ava": "^0.17.0",
"chai": "^3.5.0",
"knex": "^0.12.6",
"koa": "^2.0.0-alpha.7",
"koa-bodyparser": "^3.2.0",
"koa-router": "^7.0.1",
"koa-static": "^3.0.0",
"marked": "^0.3.6",
"pg": "^6.1.2",
"vm2": "^3.1.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"codemirror": "^5.22.2",
"css-loader": "^0.26.1",
"enzyme": "^2.7.0",
"eslint": "^3.13.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-standard": "^2.0.1",
"jest": "^18.1.0",
"json-loader": "^0.5.4",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"nodemon": "^1.11.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-codemirror": "^0.3.0",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-mock-store": "^1.2.1",
"redux-thunk": "^2.2.0",
"sqlite3": "^3.1.8",
"style-loader": "^0.13.1",
"superagent": "^3.3.2",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"engines": {
"node": ">= 7.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --content-base public/ --hot --inline",
"knex": "knex",
"start": "nodemon --watch server server/server.js",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"env": {
"jest": true
},
"extends": [
"plugin:react/recommended",
"standard"
],
"installedESLint": true,
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"standard",
"promise",
"react"
],
"rules": {
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "^__"
}
]
}
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}