-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·44 lines (44 loc) · 1.02 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
{
"name": "tractatus",
"version": "2.1.0",
"description": "An interactive subway-style map of Ludwig Wittgenstein's Tractatus Logico-Philosophicus",
"main": "src/app.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"prepublishOnly": "npm run build",
"watch": "webpack --watch",
"webpack": "webpack",
"start": "webpack --watch & webpack-dev-server --open-page 'webpack-dev-server/dist'"
},
"author": "Matthew Butler",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.7.2"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
">0.25%",
"not ie 11",
"not op_mini all"
]
}
}
]
]
},
"dependencies": {
"diff": "^5.0.0",
"lodash": "^4.17.21"
}
}