-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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": "interactive_dev",
"version": "0.0.1",
"description": "Interactive Front End dev",
"main": "app.js",
"author": "Balint Fulop <[email protected]>",
"license": "MIT",
"dependencies": {
"aphrodite": "^1.1.0",
"history": "^4.5.1",
"inferno": "^1.1.1",
"inferno-component": "^1.1.2",
"inferno-create-element": "^1.1.1",
"myro": "^0.6.3-alpha.0",
"ramda": "^0.23.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-inferno": "^1.5.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"css-loader": "^0.26.1",
"electron": "^1.4.15",
"extract-text-webpack-plugin": "beta",
"inferno-server": "^1.3.1",
"inferno-test-utils": "^1.2.1",
"rimraf": "^2.5.4",
"standard": "^8.6.0",
"style-loader": "^0.13.1",
"wallaby-webpack": "^0.0.31",
"webdriverio": "^4.6.1",
"webpack": "beta",
"webpack-config-utils": "^2.3.0",
"webpack-dev-server": "beta",
"webpack-validator": "^2.3.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "webpack --env.prod -p",
"prebuild:dev": "rimraf dist",
"build:dev": "webpack --env.dev",
"dev": "webpack-dev-server --env.dev --hot --quiet --host 0.0.0.0",
"debug": "node-nightly --inspect --debug-brk node_modules/.bin/webpack --env.debug",
"debug:dev": "npm run debug -- --env.dev",
"debug:prod": "npm run debug -- --env.prod"
}
}