-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
{
"name": "chess-react",
"author": "NumberFour AG",
"version": "0.0.1",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"start": "webpack-dev-server",
"build": "./node_modules/n4js-cli/bin/n4jsc.js . --clean --noPersist",
"webpack": "webpack"
},
"n4js": {
"projectType": "library",
"vendorId": "org.eclipse.n4js",
"sources": {
"source": [
"src"
]
},
"output": "src-gen"
},
"devDependencies": {
"@n4jsd/react": "<=16.6.*",
"@n4jsd/react-dom": "<=16.6.*",
"clean-webpack-plugin": "3.0.*",
"html-webpack-plugin": "3.2.*",
"n4js-cli": "latest",
"n4js-mangelhaft-cli": "latest",
"n4js-runtime-es2015": "latest",
"n4js-runtime-html5": "latest",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@zeit/next-css": "1.0.*",
"debug": "4.1.*",
"n4js-runtime": "latest",
"next": "^10.2.0",
"react": "16.6.*",
"react-dom": "16.6.*"
},
"resolutions": {
"underscore": "^1.12.1",
"postcss": "^8.2.10"
}
}